@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(245 245 245);
}

ul {
    padding: 0px;
    margin: 0px;
}

.form-control:focus {
    border-color: rgb(252, 137, 25) !important;
    box-shadow: 0 0 0 0.2rem rgba(252, 138, 25, 0.25);
}

.filler {
    flex-grow: 1;
}

.flt {
    float: left;
    width: 100%;
}



.header_container {
    background-image: url('../../assets/images/header-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4px;
    border-radius: 0px 0px 7px 7px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 20%);
}

.topbar {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar_search {
    position: relative;
    width: 335px;
}

.topbar_search input {
    background-color: rgb(82 73 67);
    border: 1px solid rgb(109 102 98);
    border-radius: 4px;
    width: 100%;
    height: 42px;
    padding: 0px 40px 0px 23px;
    outline: none;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: rgb(255, 255, 255);
}

.topbar_search input::placeholder {
    color: rgb(240 240 243);
}

.topbar_search button {
    position: absolute;
    right: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(43 38 35);
    border-radius: 3px;
    border: none;
    top: 50%;
    transform: translateY(-50%);
}

.bell {
    background-color: rgb(252 137 25);
    border: 1px solid rgb(253 161 71);
    border-radius: 4px;
    width: 42px;
    height: 42px;
    margin-left: 15px;
}

.topbar_right {
    display: flex;
    align-items: center;
}

.topbar_name {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(255 255 255);
}

.topbar_profile {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.topbar_profile button {
    background-color: rgb(255 255 255);
    border: 1px solid rgb(253 161 71);
    border-radius: 4px;
    width: 42px;
    height: 42px;
    margin-left: 8px;
}

.menuH_container {
    display: flex;
    align-items: center;
    background-color: rgb(240 240 243);
    border-radius: 5px;
}

.menuH_container li {
    list-style-type: none;
    margin: 5px;
    min-width: 135px;
}

.menuH_container li a {
    float: left;
    width: 100%;
    background-color: rgb(255 255 255);
    border-radius: 3px;
    padding: 3px 3px 3px 3px;
    font-weight: 300;
    font-size: 12px;
    color: rgb(43 38 35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
}

.menu_white {
    display: none;
}

.menuH_container li a b {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 2px;
    transition: 0.3s all ease-in-out;
    z-index: 1;
    margin-right: 5px;
}

.menuH_container li a span {
    width: calc(100% - 30px);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.menuH_container li a:hover .menu_white,
.menuH_container li a.active .menu_white {
    display: block !important;
}

.menuH_container li a:hover .menu_black,
.menuH_container li a.active .menu_black {
    display: none;
}

.menuH_container li a:hover b,
.menuH_container li a.active b {
    background: rgb(253, 161, 71);
    transition: 0.3s all ease-in-out;
}

.menuH_container li a:hover,
.menuH_container li a.active {
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.topbar_traingle {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid rgb(43 38 35);
    display: inline-block;
    margin-left: 10px;
}

.menuH_container li a:hover .topbar_traingle,
.menuH_container li a.active .topbar_traingle {
    border-top: 10px solid rgb(255, 255, 255);
}

.menuH_container li a::before {
    background-color: rgb(252 137 25);
    position: absolute;
    left: 0px;
    top: 0px;
    content: '';
    width: 100%;
    height: 0%;
    border-radius: 3px;
    transition: 0.3s all ease-in-out;
}

.menuH_container li a:hover::before,
.menuH_container li a.active::before {
    height: 100%;
    transition: 0.3s all ease-in-out;
}

.page_container {
    min-height: calc(100vh - 116px);
    padding: 20px 15px;
}

.page_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.page_title {
    font-weight: 400;
    font-size: 18px;
    color: rgb(43 38 35);
}

.page_title a {
    color: rgb(252 137 25);
    margin-right: 12px;
}

.breadcrumbs {
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 4px;
    padding: 8px 20px;
}

.breadcrumbs li {
    font-weight: 300;
    font-size: 11px;
    line-height: 16px;
    color: rgb(252 137 25);
    display: inline-block;
}

.breadcrumbs li a {
    color: rgb(43 38 35);
}

.dash_box {
    display: flex;
    align-items: center;
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 30px 19px;
    margin-bottom: 40px;
}

.dash_card {
    display: flex;
    align-items: center;
    background-color: rgb(255 255 255);
    border-radius: 6px;
    padding: 25px;
    width: 20%;
    margin: 0px 11px;
}

.dash_icon {
    margin-right: 25px;
}

.dash_icon span {
    width: 43px;
    height: 43px;
    background-color: rgb(252 137 25);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash_name {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(43 38 35);
}

.dash_no {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: rgb(252 137 25);
}

.dash_chart img {
    max-width: 100%;
}

.dash_count {
    font-weight: 300;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: rgb(0 0 0);
    padding: 20px 0px 0px 8px;
}

.dash_count span {
    color: rgb(252 137 25);
    font-weight: 400;
    font-size: 16px;
}

.dash_chart {
    padding: 100px 12px 26px 12px;
}

.dash_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dash_left {
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255, 255, 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 12px;
}

.dash_filter {
    display: flex;
    align-items: center;
}

.dash_filter select {
    font-weight: 300;
    font-size: 13px;
    line-height: 15px;
    color: rgb(43 38 35);
    border: 1px solid rgb(139 139 139);
    width: 172px;
    height: 40px;
    margin-right: 6px;
}

.dash_filter button {
    background-color: rgb(252 137 25);
    border: 1px solid rgb(253 161 71);
    border-radius: 5px;
    width: 40px;
    height: 40px;
}

.dash_right {
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
}

.dash_payment_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(139, 139, 139);
    padding: 8px;
}

.dash_payment_title {
    margin-right: 5px;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgb(0 0 0);
}

.dash_payment_cont {
    padding: 30px;
}

.dash_payment_cont li {
    float: left;
    width: 100%;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0px;
}

.dash_payment_name {
    width: 20%;
}

.dash_payment_amount {
    width: 30%;
}

.dash_payment_cont li .progress {
    height: 6px;
    width: 50%;
    background-color: rgb(217 217 217);
    border-radius: 3px;
    margin: 0px 15px;
}

.dash_payment_cont li .progress-bar {
    background-color: rgb(252, 137, 25);
}

.management_tab {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}


.management_tab li {
    list-style-type: none;
    width: 14%;
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    margin-right: 12px;
}

.management_tab li:last-child {
    margin-right: 0px;
}

.management_tab li a {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-transform: uppercase;
    color: rgb(43 38 35);
    float: left;
    width: 100%;
    padding: 11px;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.2s all ease-in-out;
}

.management_tab li a.active,
.management_tab li a:hover {
    border: 2px solid rgb(252, 137, 25);
    transition: 0.2s all ease-in-out;
}

.management_main {
    display: flex;
}

.sidebar {
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 8px;
    float: left;
    width: 260px;
    margin-right: 8px;
}

.sidebar ul li {
    float: left;
    width: 100%;
    list-style-type: none;
    margin-bottom: 4px;
}

.sidebar ul li a {
    float: left;
    width: 100%;
    font-weight: 300;
    font-size: 13px;
    line-height: 20px;
    color: rgb(0 0 0);
    padding: 13px;
    background-color: rgb(255, 255, 255);
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s all ease-in-out;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
    color: rgb(255, 255, 255);
    background-color: rgb(252, 139, 26);
    transition: 0.2s all ease-in-out;
}

.retraunt_detail_container .row {
    margin-left: 0px;
}

.sidebar ul li a img {
    margin-right: 10px;
}

.management_cont {
    float: left;
    width: calc(100% - 268px);
    background-color: rgb(240, 240, 243);
    box-shadow: -5px -5px 7px rgb(255, 255, 255), 5.5px 5.5px 7px rgba(174, 174, 192, 0.4);
    border-radius: 5px;
    padding: 24px 12px;
}

.management_filter {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.manage_quick {
    display: flex;
    align-items: center;
}

.manage_quick select {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: rgb(43 38 35);
    border: 1px solid rgb(0 0 0);
    border-radius: 4px;
    height: 38px;
    background-color: transparent;
}

.manage_quick button {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: rgb(255 255 255);
    background-color: rgb(252 137 25);
    border-radius: 4px;
    height: 38px;
    border: none;
    padding: 10px 25px;
    margin-left: 6px;
}

.manage_search select {
    background-color: rgb(82 73 67);
    border-radius: 4px 0px 0px 4px;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: rgb(255 255 255);
    border: none;
    height: 38px;
    width: 116px;
    border-right: 10px solid rgb(82 73 67);
}

.manage_search select:focus {
    border: none;
    box-shadow: none;
    border-right: 10px solid rgb(82 73 67) !important;
}

.manage_search input {
    background-color: rgb(255 255 255);
    border: none;
    height: 38px;
    padding: 10px 10px 10px 22px;
    outline: none;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: rgb(124, 124, 124);
    width: calc(100% - 154px);
    border-radius: 0px 4px 4px 0px;
}

.manage_search input::placeholder {
    color: rgb(124, 124, 124);
}

.manage_search {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0px 25px;
}

.manage_input {
    display: flex;
    background-color: rgb(255 255 255);
    border-radius: 0px 4px 4px 0px;
}

.manage_input button {
    background-color: transparent;
    border: none;
}

.manage_filter {
    background-color: rgb(82 73 67);
    border-radius: 4px;
    border: none;
    width: 38px;
    height: 38px;
    margin-left: 6px;
}

.manage_item {
    background-color: rgb(252 137 25);
    border-radius: 4px;
    border: none;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 2px 2px 2px 12px;
}

.manage_item span {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: rgb(255 255 255);
    margin: 0px 15px;
}

.dinein_list .manage_item span {
    font-weight: 500;
    font-size: 11px;
}

.manage_item i {
    background-color: rgb(255 166 79);
    border-radius: 4px;
    width: 34px;
    height: 34px;
    font-size: 20px;
    line-height: 34px;
    color: rgb(255, 255, 255);
}

.management_table .table {
    margin: 0px;
}

.management_table thead {
    background-color: rgb(82 73 67);
}

.management_table thead tr th {
    font-weight: 500;
    font-size: 14px;
    color: rgb(255, 255, 255);
    border: none;
    padding: 15px 10px;
    text-align: left;
    vertical-align: middle;
}

.management_table tbody tr {
    background-color: rgb(255 255 255);
    border-top: 6px solid rgb(240, 240, 243);
}

.management_table tbody tr td {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: rgb(82 73 67);
    border: none;
    padding: 15px;
    text-align: left;
    vertical-align: middle;
}

.management_table tbody tr td i {
    margin-right: 15px;
}

.boy_details_table .table {
    margin: 0px;
}

.boy_details_table thead {
    background-color: rgb(82 73 67);
}

.boy_details_table thead tr th {
    font-weight: 500;
    font-size: 14px;
    color: rgb(255, 255, 255);
    border: none;
    padding: 15px;
    text-align: left;
    vertical-align: middle;
}

.boy_details_table tbody tr {
    background-color: rgb(255 255 255);
    border-top: 6px solid rgb(240, 240, 243);
}

.boy_details_table tbody tr td {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: rgb(82 73 67);
    border: none;
    padding: 15px;
    text-align: left;
    vertical-align: middle;
}

.boy_details_table tbody tr td i {
    margin-right: 15px;
}

.status_green {
    font-weight: 400;
    font-size: 14px;
    color: rgb(81 128 32);
    background-color: rgb(188 255 188);
    border-radius: 5px;
    padding: 5px 15px;
}

.status_red {
    font-weight: 400;
    font-size: 14px;
    color: rgb(178, 0, 0);
    background-color: rgb(255, 228, 228);
    border-radius: 5px;
    padding: 5px 15px;
}

.table_action button {
    margin-right: 3px;
    background-color: rgb(245 245 245);
    border-radius: 6px;
    width: 34px;
    height: 34px;
    border: none;
    color: rgb(82 73 67);
    font-size: 14px;
}

.table_action button i {
    margin-right: 0px !important;
}

.table_check label {
    position: relative;
    cursor: pointer;
    margin: 0px;
}

.addon_holder_main .table_check label:before {
    content: '';
    -webkit-appearance: none;
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(252, 137, 25);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 3px;
}

.addon_holder .table_check label:before {
    content: '';
    -webkit-appearance: none;
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(252, 137, 25);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 3px;
}

.table_check label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid rgb(252, 137, 25);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 3px;
}

.addon_holder_main button {
    border: none;
    background: transparent;
}

.addon_holder button {
    border: none;
    background: transparent;
}

.table_check input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.table_check input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 13px;
    border: solid rgb(252, 137, 25);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sidebar_head {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(43 38 35);
    margin-bottom: 10px;
}

.item_main {
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 5px;

}

.invoice_main {
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 12px;


}

.item_box {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    width: calc(50% - 10px);
    margin: 5px;
    padding: 15px;
    float: left;
}

.item_box .checkbox {
    margin: 0px;
}

.item_status .checkbox {
    margin: 0px;
}

/* .table_select .form-group {
    margin-bottom: 0px;
} */
.item_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.item_status {
    display: flex;
    align-items: center;
}

.item_title {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgb(43 38 35);
}

.item_cont .form-group input,
.item_cont .form-group select {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
    background-color: transparent;
    border: 1px solid rgb(133 133 133);
    border-radius: 6px;
    height: 50px;
    padding: 15px 24px;
}

.item_cont .form-group input::placeholder {
    color: rgb(0 0 0);
}
.item_cont .form-group {
    min-height: 68px;
}
.item_status_name {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
    margin-right: 16px;
}

/* toogle button start */

.knobs,
.layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 22px;
}

.button_toggle {
    position: relative;
    width: 56px;
    height: 22px;
    overflow: hidden;
}

.button_toggle input {
    height: 22px;
}

.button_toggle.r,
.button_toggle.r .layer {
    border-radius: 100px;
}

.button_toggle.b2 {
    border-radius: 2px;
}

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    background-color: rgba(131, 248, 166, 1);
    transition: 0.3s ease all;
    z-index: 1;
    border: 1px solid rgba(0, 114, 34, 1);
    border-radius: 4px;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.12);
}

#button-12 .knobs:before,
#button-12 .knobs:after,
#button-12 .knobs span,
#button-12 .knobs span:before,
#button-12 .knobs span:after {
    position: absolute;
    top: 4px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    border-radius: 2px;
    transition: 0.3s ease all;
}

#button-12 .knobs:before {
    content: "";
    background-image: url(../images/toggle-on.png);
    background-repeat: no-repeat;
    background-position: center;
    left: 4px;
}

#button-12 .knobs:after {
    content: "";
    background-image: url(../images/toggle-off.png);
    background-repeat: no-repeat;
    background-position: center;
    right: 4px;
}

#button-12 .knobs:before,
#button-12 .knobs:after {
    width: 21px;
    height: 14px;
    color: #4e4e4e;
    padding: 4px 4px;
    z-index: 1;
}

#button-12 .knobs span {
    display: inline-block;
    z-index: 2;
}

#button-12 .knobs span,
#button-12 .knobs span:before,
#button-12 .knobs span:after {
    width: 19px;
    height: 14px;
    padding: 4px 4px;
}

#button-12 .knobs span:before,
#button-12 .knobs span:after {
    content: "";
    top: 0;
}

#button-12 .knobs span:before {
    left: -28px;
    background-color: rgb(255, 255, 255);
}

#button-12 .knobs span:after {
    right: -33px;
    background-color: rgb(255, 255, 255);
}

#button-12 .checkbox:checked+.knobs span:before {
    left: 4px;
}

#button-12 .checkbox:checked+.knobs span:after {
    right: -74px;
}

#button-12 .checkbox:checked~.layer {
    background-color: rgba(255, 233, 233, 1);
    border: 1px solid rgba(222, 27, 30, 1);
    border-radius: 4px;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.12);
}

/* toogle button end */
.item_photo {
    border: 1px solid rgb(133 133 133);
    border-radius: 8px;
    padding: 10px;
}

.item_photo_view img {
    border: 1px dashed rgb(252 137 25);
    border-radius: 4px;
    width: 100%;
    margin: 0% auto;
}

.item_cont .form-group label {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgb(43 38 35);
}

.item_upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-top: 10px;
}

.item_upload button {
    border: none;
    background-color: rgb(82, 73, 67);
    border-radius: 4px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: rgb(255, 255, 255);
    float: left;
    width: 100%;
    height: 40px;
}

.item_upload input[type=file] {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.expose_item_list {
    padding: 15px;
    border: 1px solid rgb(133, 133, 133);
    border-radius: 6px;
}

.expose_item_list li {
    list-style-type: none;
    margin-bottom: 15px;
}

.expose_item_list li:last-child {
    margin-bottom: 0px;
}

.expose_item_list input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.expose_item_list label {
    position: relative;
    cursor: pointer;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 21px !important;
    color: rgb(0 0 0) !important;
}

.expose_item_list label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid rgb(0, 0, 0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 9px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 17px;
    border-radius: 3px;
}

.expose_item_list input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 14px;
    border: solid rgb(0, 0, 0);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.item_ignore {
    margin-top: 22px;
}

.item_ignore li {
    list-style-type: none;
    float: left;
    width: 50%;
}

.item_ignore input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.item_ignore label {
    position: relative;
    cursor: pointer;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 21px !important;
    color: rgb(0 0 0) !important;
}

.item_ignore label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid rgb(0, 0, 0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 9px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 12px;
    border-radius: 3px;
}

.item_ignore input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 14px;
    border: solid rgb(0, 0, 0);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}



















.item_variants li {
    list-style-type: none;
    display: inline-block;
}

.item_variants input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.item_variants label {
    position: relative;
    cursor: pointer;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 21px !important;
    color: rgb(0 0 0) !important;
}

.item_variants label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid rgb(0, 0, 0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 9px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 8px;
    border-radius: 3px;
}

.item_variants input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 14px;
    border: solid rgb(0, 0, 0);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.category_container {
    float: left;
    width: 100%;
    background-color: rgb(240, 240, 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 24px 12px;
}

.staff_container .category_container {
    box-shadow: none !important;
    float: left;
    width: 100%;
    border-radius: 5px;
    padding: 24px 12px;
}

.category_title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(43 38 35);
}

.item_box_full {
    display: flex;
    background-color: rgb(255 255 255);
    border-radius: 4px;
    min-height: 300px;
}

.item_submit {
    text-align: right;
    background-color: rgb(240 240 243);
    padding: 10px 0px 5px 0px;
    margin-top: 10px;
    border-top: 2px solid rgb(255, 255, 255);
}

.item_submit button {
    background-color: rgb(252 137 25);
    border-radius: 4px;
    border: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 15px 75px;
}

.item_box_full .item_box {
    margin: 0px;
}








/* rach css */

.addon_box {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    width: 100%;
    margin: 5px;
    padding: 15px;
}

.table_box {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    width: 100%;
    margin: 5px;

}

.area_box {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    width: 60%;
    margin: 5px;

}

.addonassign_box {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    width: 70%;

}

.addon_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.addon_title {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgb(43 38 35);
}

.table_title {
    padding: 20px 0px 6px 16px;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgb(43 38 35);
}

.addon_table {
    margin-top: 8px;
}

/* .addon_box_full {

    background-color: rgb(255 255 255);
    border-radius: 4px;

} */
.addon_box_full {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    padding-bottom: 30px;
}

.item_details_box_full {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 12px;
}

.item_details_box_ful {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    padding: 10px;
}

.invoice_details_box_full {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    padding: 10px;
}

.addonassign_box_full {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    padding: 18px 14px;
}

.addon_holder_main {
    background: rgb(82, 73, 67);
    border-radius: 6px;
    padding: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    justify-content: space-between;
}

.addon_holder {
    background: rgb(82, 73, 67);
    border-radius: 6px;
    margin-bottom: 5px;
    padding: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    justify-content: space-between;
}

.addon_holder .table_check span {
    margin-left: 13px;
}

.addon_addrow {
    padding: 32px 8px 12px 0px;
}

.addon_addrow button {
    border: 1px solid #524943;
    border-radius: 4px;
    float: right;
    width: 185px;
    padding: 8px 10px;
}

.addon_addrow button span {
    float: right;
}


.addon_submit {
    text-align: right;
    background-color: rgb(240 240 243);
    padding: 10px 0px 5px 0px;
    margin-top: 10px;
    border-top: 2px solid rgb(255, 255, 255);
}

.addon_submit button {
    background-color: rgb(252 137 25);
    border-radius: 4px;
    border: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 15px 33px;
}


.addon-attributes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style-type: none;
}


.addon-attributes li {
    margin-right: 50px;
}

.addon-attributes label {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: rgb(82, 73, 67);
}

.addon_status_name {
    font-size: 14px;
    line-height: 21px;
    color: rgb(81, 128, 32);
    margin-right: 16px;
}

.addon_table table td input.form-control {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(133, 133, 133);
    border-radius: 6px;
    padding: 10px 17px;
}


.addon_table table td input.form-control {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(133, 133, 133);
    border-radius: 6px;
    padding: 10px 17px;
}


.addon_table table td input::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgb(82, 73, 67);
}

.addon_heading {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #2B2623;
    padding: 10px;
}

.addon_item_contents {
    display: flex;
    align-items: center;
}


.addon_item {
    width: 15%;
    margin-right: 13px;
}

.addon_item_head {
    padding: 15px 0px;
}

.addon_items_container {
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(230, 230, 230);
    border-top: 1px solid rgb(230, 230, 230);
}

.apply-addon {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
    padding: 15px 0px;
}

.addon_list {
    display: flex;
    align-items: center;
}

.addon_list button {
    background: transparent;
    border: none;
}


.addon_list ul {
    width: 20%;
    list-style-type: none;

}


.addon_list li {
    background: #F0F0F3;
    border-radius: 3px;
    padding: 7px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.addon_list_add {
    margin: 8px 0px;
    padding-left: 40px;
    display: flex;
    align-items: center;
}

.addon_list_add button {
    background: transparent;
    border: none;
}

.addon_list_add ul {
    width: 20%;
    list-style-type: none;

}


.addon_list_add li {
    background: #F0F0F3;
    border-radius: 3px;
    padding: 7px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}






.addon_listmain_add {
    margin: 8px 0px;

    display: flex;
    align-items: center;
}

.addon_listmain_add button {
    background: transparent;
    border: none;
}

.addon_listmain_add ul {
    width: 20%;
    list-style-type: none;

}


.addon_listmain_add li {
    background: #F0F0F3;
    border-radius: 3px;
    padding: 7px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

























.addon_list_item ul {
    padding-left: 90px;
    list-style-type: none;
}

.addon_list_item li {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    background: rgb(240, 240, 243);
    border-radius: 3px;
    padding: 7px 15px;
}

.burger_addons {
    background: #524943;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    padding: 15px;
    line-height: 25px;
    margin-bottom: 5px;
    color: rgb(255, 255, 255);
}

.addon_item_cont {
    margin-top: 10px;
}

.addon_limit {
    padding: 6px 6px 6px 15px;
    display: flex;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(133, 133, 133);
    border-radius: 6px;
    align-items: center;
    justify-content: space-around;
}

.addon_limit input.form-control {
    width: 50%;
    background: rgb(244, 244, 244);
    border-radius: 4px;
    padding: 10px 10px;
    height: 40px;
}

.addon_limit input {
    border: none !important;
    background: transparent;
}

.addon_limit label {
    font-weight: 400;
    color: rgb(43 38 35);
    width: 100%;
    font-size: 14px !important;
}

.show_addon_cont {
    background: rgb(244, 244, 244);
    border-radius: 4px;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 8px;
}

.crust_group_cont {
    padding: 10px;
    background: rgb(244, 244, 244);
    border-radius: 4px;
}

.crust_list {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crust_text {
    font-size: 12px;
}

.item_cont .col-sm-3 {
    padding: 0px 6px;
}

.show_addon {
    font-size: 13px;
}

.addon_limit span {
    background: rgb(245, 245, 245);
    border-radius: 4px;
    padding: 10px 0px 10px 10px;
    width: 130px;
    margin-right: 5px;
}

.addon_item input {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(133, 133, 133);
    border-radius: 6px;
    padding: 10px;
}

.addon_item input::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(43, 38, 35);
}

.apply_addon_container {
    position: relative;
}

.apply_addon_container:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 91%;
    left: 20px;
    top: 37px;
    background: rgb(252, 137, 25);
}

.discount_category_container {
    padding: 25px 0px;
    position: relative;
    border-bottom: 1px solid #E6E6E6;
}

.discount_category_container:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 91%;
    left: 20px;
    top: 37px;
    background: rgb(252, 137, 25);
}


.addon_list_item li {
    position: relative;
}

.addon_list_item li::before {
    position: absolute;
    content: '';
    width: 1px;
    transform: rotate(90deg);
    height: 64px;
    left: -34px;
    border: 1px dashed rgb(82, 73, 67);
}

.addon_list_add {
    position: relative;
}

.addon_list_add::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 25px;
    top: 5px;
    left: 33px;
    transform: rotate(90deg);
    background: rgb(252, 137, 25);
}

.addon_lists_add {
    position: relative;
}

.addon_lists_add::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 25px;
    top: 5px;
    left: 33px;
    transform: rotate(90deg);
    background: rgb(252, 137, 25);
}

.apply_addon_cont {
    position: relative;
    padding-left: 0px;
}

/* .apply_addon_cont::before {
    position: absolute !important;
    content: '' !important;
    width: 1px !important;
    height: 8%;
    left: 35px;
    transform: rotate(90deg);
    top: 13px !important;
    background: rgb(252, 137, 25);
} */
.addon_list_item {
    padding-left: 40px;
}

.apply_addon_cont::after {
    position: absolute !important;
    content: '' !important;
    width: 1px !important;
    height: 81%;
    left: 62px !important;
    top: 46px !important;
    border: 1px dashed rgb(82, 73, 67) !important;
}

.table_btns {
    display: flex;
    align-items: center;
    width: 30%;
}

.btn_table {
    width: 40%;
    margin-right: 13px;
    width: 40%;
    background: rgb(240, 240, 243);
    border: 2px solid rgb(252, 137, 25);
    box-shadow: -5px -5px 7px rgb(255, 255, 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 10px 0px;
}

.btn_area {
    width: 40%;
    margin-right: 13px;
    width: 40%;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    border: none;
    padding: 10px 0px;
}

.table_select select.form-control {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
    background-color: transparent;
    border-radius: 6px;
    height: 45px;
    padding: 10px 24px;
}

.table_select.flt {
    padding: 0px 10px;
}

.table_cont .form-group input,
.table_cont .form-group select {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
    background-color: transparent;

    border-radius: 6px;
    height: 45px;
    padding: 10px 24px;
}

.table_cont .form-group input::placeholder {
    color: rgb(0 0 0);
}

.table_cont .form-group label {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgb(43 38 35);
}

.area_cont {
    margin-right: 20px;

    border-radius: 6px;
    width: 82%;
    padding: 10px;
}

.table_cont {
    margin-right: 20px;
    background: rgb(240, 240, 243);
    border-radius: 6px;
    width: 82%;
    padding: 10px;
}

.table_cont .form-group {
    margin-bottom: 0px;
    background: rgb(255, 255, 255);
    border-radius: 6px;
}

.table_btn {
    padding: 15px;
    background: #FFFFFF;
    border: 1px solid #858585;
    border-radius: 6px;
}

.add_table_cont {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.table_status {
    margin-top: 14px;
    display: flex;
    align-items: center;
}

.area_status {
    width: 35%;
    margin-top: 14px;
    display: flex;
    align-items: center;
}

.area_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radio {

    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    display: inline-block;
    color: rgb(82, 73, 67);
    margin-left: 15px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
}


.radio input[type="radio"] {
    display: none;
}

.radio span {
    height: 20px;
    width: 20px;
    display: block;
    top: 2px;
    left: 0px;
    position: absolute;
    border-radius: 50%;
    background: rgb(217, 217, 217);
    border: 1px solid rgb(0, 0, 0);
}

.radio span:after {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background: rgb(0, 0, 0);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%)scale(0);
    transition: 300ms ease-in-out 0s;

}

.radio input[type="radio"]:checked~span:after {
    transform: translate(-50%, -50%)scale(1);
}

.addon_view_list {
    border-bottom: 1px solid rgb(252, 137, 25);
    padding-bottom: 15px;
}

.addon_view_list ul {
    padding: 0px 10px;
    list-style-type: none;
}

.addon_view_list li {
    float: left;
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
    color: #000000;
    width: 34%;
}

.addon_view_list li:nth-child(odd) {
    width: 34%;
}

.addon_view_list span {
    float: right;
    padding: 0px 25px;
}

.item_view_list {
    border-bottom: 1px solid rgb(252, 137, 25);
    padding-bottom: 15px;
    display: flex;
}

.item_view_list ul {
    padding: 0px 15px;
    list-style-type: none;
}

.edit_permission_type {

    background: rgb(255 255 255);
    border-radius: 4px;
    padding: 13px 15px;
}

.edit_permission_head {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: rgb(43 38 35);
    margin-bottom: 5px;
}

.edit_permission_type ul {
    list-style-type: none;
}

.item_view_list li {
    float: left;
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
    color: rgb(0, 0, 0);
    width: 34%;
}

.edit_permission_type li {
    float: left;
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
    color: rgb(0, 0, 0);
    width: 60%;
}

.item_view_list li:nth-child(odd) {
    width: 34%;
}

.edit_permission_type li:nth-child(odd) {
    width: 40%;
}

.paid_list {
    padding: 0px 10px;
}

.paid_list li:nth-child(odd) {
    width: 45% !important;
}

.personal_information li:nth-child(odd) {
    width: 19% !important;
}

.personal_information li {
    width: 64% !important;
}

.paid_list span {
    padding: 0px 7px !important;
}

.personal_information {
    padding: 0px;
}

.personal_information li {
    line-height: 25px;
}

.paid_list li {
    line-height: 25px;
    width: 22% !important;
}

.item_view_list span {
    float: right;
    padding: 0px 25px;
}

.edit_permission_type span {
    float: right;
    padding: 0px 18px;
}

.invoice_view_list {
    display: flex;
}

.invoice_view_list ul {
    padding: 0px 15px;
    list-style-type: none;
}

.invoice_view_list li {
    float: left;
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
    color: rgb(0, 0, 0);
    width: 34%;
}

.invoice_view_table table {
    margin-bottom: 0px;
}

/* .invoice_view_table table tr td{
    border-top: none;
} */
.invoice_view_table table tr td {
    padding: 5px 0px;
    border-top: none;
}

.invoice_view_table th {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(43, 38, 35);
}

.invoice_view_list li:nth-child(odd) {
    width: 58%;
}

.invoice_view_list span {
    float: right;
    padding: 0px 25px;
}

.item_btm {
    background: rgb(248, 248, 248);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.addon_view_head {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 10px;
    color: rgb(43, 38, 35);

}

.addon_view_table tr {
    background: rgb(248, 248, 248);
    border-radius: 4px;
}

.addon_view_table td {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
    border-top: none !important;
}

.addon_view_table {
    padding: 10px;
}

.addon_view_table table {
    border-collapse: separate;
    border-spacing: 0 4px;
}

.item_container {
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 5px;

}

.food_variant {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.food_variant button {
    border: none;
    background: transparent;
    width: 40%;
}

.variant_head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.variant_title {
    width: 36%;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgb(43 38 35);
}

.variant_box {
    background-color: rgb(255 255 255);
    border-radius: 4px;
    width: calc(50% - 10px);
    margin: 5px;
    padding: 15px;
    float: left;
}

.variant_box .item_cont .row {
    padding-top: 15px;
    background: rgb(248, 248, 248);
    border-radius: 6px;
    margin: 0px 0px 10px 0px;
}

.variant_box .item_cont .form-group select {
    padding: 12px 20px;
}

.item_photo_upload {
    padding: 35px;
    background: #EDEDED;
    border: 1px dashed #B3B3B3;
    border-radius: 4px;
    text-align: center;
}

.combo_img {
    border: none;
    margin-bottom: 12px;
}

.add_item_btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: rgb(240 240 243);
    padding: 10px 0px 5px 0px;
    margin-top: 10px;
    border-top: 2px solid rgb(255, 255, 255);
}

button.save_btn {
    width: 16%;
    border: 1px solid #524943;
    border-radius: 4px;
    padding: 15px 25px;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #2B2623;
}

button.add_btn {
    background: #FC8919;
    border-radius: 4px;
    border: none;
    padding: 15px 25px;
    width: 13%;
    margin-left: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: rgb(255, 255, 255);
}

.addon_filter {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.addon_filter .manage_search {
    width: 32%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin: 0 10px 0 0;
}

.addon_filter .manage_input {
    width: 80%;
    display: flex;
    background-color: rgb(255 255 255);
    border-radius: 0px 4px 4px 0px;
}

.addon_filter .manage_item {
    margin-left: 10px;

}

.tax_search {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0px 25px;
}

.tax_search select {
    background-color: rgb(240, 240, 243);
    border-radius: 4px;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: rgb(43, 38, 35);
    border: 1px solid rgb(0, 0, 0);
    height: 38px;
    width: 116px;

}

.tax_search .manage_input {
    background: none;
    align-items: center;
}

.tax_search label {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: rgb(43, 38, 35);
    margin-right: 10px;
}

.tax_area {
    margin: 10px 0px;
    display: flex;
    align-items: center;
}

.tax_main {
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 5px;

}

.tax_box {
    border-radius: 4px;
    margin: 5px;
    padding: 0px 15px 15px 15px;
}

.tax_box input {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(133, 133, 133);
    border-radius: 6px;
    padding: 15px 26px;
    height: 50px;
}

.tax_box input::placeholder {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
}

.tax_area .item_variants {
    margin-right: 30px;
}

.tax_box .radio-group .radio {
    margin-left: 42px;
}

.tax_box .radio-group .radio:first-child {
    margin-left: 0px;
}

.tax_type {
    border-bottom: 1px solid rgb(230, 230, 230);
    padding: 15px 100px 15px 0px;
}

.tax_area_type {
    padding: 15px 0px;
    border-bottom: 1px solid rgb(230, 230, 230);
}

.tax_area_type .addon_title {
    margin-bottom: 10px;
}

.tax_type .addon_head .item_status {
    justify-content: flex-end;
    display: flex;
}

.tax_main .addon_box_full {
    padding-bottom: 0px;
}

.tax_value {
    border-bottom: 1px solid rgb(230, 230, 230);
    padding: 15px 0px 0px 15px;
}

.tax_submit {
    padding: 10px 7px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tax_submit button {
    background: rgb(252, 137, 25);
    border-radius: 4px;
    color: rgb(255, 255, 255);
    padding: 15px;
    width: 165px;
    border: none;
    margin-left: 21px;
}

.discount_filter {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.discount_filter .manage_quick {

    margin-right: 18px;
}

.discount_validation {
    padding: 10px 17px;
}

.discount_validation_right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 50px;
}

.validation_head {
    padding-bottom: 18px;
    font-weight: 400;
    font-size: 16px;
    color: rgb(43, 38, 35);
}

.discount_validation_left {
    padding: 0px 10px;
}

.discount_validation_left .radio-group {
    margin-bottom: 20px;
}

.validation_text {
    padding-left: 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: rgb(82, 73, 67);
}

.discount_validation_left .radio {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
    margin-left: 0px;
}

.discount_note {
    margin-top: 5px;
    font-weight: 200;
    font-size: 12px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: rgb(82, 73, 67);
}

.discount_applicable_on {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.discount_order_type {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.discount_order {
    border-bottom: 1px solid rgb(230, 230, 230);
    padding: 25px 15px;
}

.order_head {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(43, 38, 35);
    margin-bottom: 10px;
}

.discount_order_type .item_variants {
    width: 33.33%;
}

.discount_applicable_on .radio {
    margin: 0;
}

.discount_applicable_on .radio-group {
    margin-right: 40px;
}

.tax_type_cont label {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(43, 38, 35);
}

.discount_head {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgb(43, 38, 35);
}

.duration_head {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(43, 38, 35);
    margin-bottom: 16px;
}

.discount_details_main {
    background-color: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 5px;

}

.discount_details_main .addon_view_list {
    border-bottom: none;
    padding-bottom: 0px;
}

/*





/* superadmin css*/
.combo_text span {
    margin-top: 10px;
    font-size: 12px;
}

.dinein_table_container {
    margin-bottom: 20px;
    float: left;
    width: 100%;
    background-color: rgb(240, 240, 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 12px;
}

.dinein_holder {
    margin-bottom: 30px;
    display: flex;
    align-items: center;

}

.dinein_table_cont {
    margin-bottom: 20px;
    float: left;
    width: 100%;
    background-color: rgb(240, 240, 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 15px;
}

.dinein_table_list_cont {
    margin-bottom: 20px;
    float: left;
    width: 100%;
    background-color: rgb(240, 240, 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 15px 5px 0px 15px;
}

.dinein_head {
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    color: rgb(43, 38, 35);
    width: 18%;
}

.dinein_food_head {
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    color: rgb(43, 38, 35);

}

.dine_in_menus .management_tab {
    display: block;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: auto;
}

.dine_in_menus .management_tab li {
    list-style-type: none;
    width: 15%;
    box-shadow: none;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    margin-right: 12px;
    display: inline-block;
}

.dinein_table_list {
    margin-right: 18px;
    border-radius: 5px;
    padding: 4px;
    background: rgb(255, 255, 255);
}

.dinein_table_list:last-child {
    margin-right: 0px;
}

.dinein_top {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.dinein_list_cont {
    padding: 8px 0px 5px 0px;
    border: 1px dashed rgb(228, 228, 228);
    border-radius: 2px;
}

.dinein_btm,
.dinein_btm_blue,
.dinein_btm_green,
.dinein_btm_yellow,
.dinein_btm_orange,
button {
    border: none;
    background: transparent;
}

.dinein_btm {
    line-height: 22px;
    width: 100%;
    background: rgb(231, 231, 231);
    height: 30px;
    border-radius: 0px;
    text-align: center;
    padding: 3px 25px;
}

.dinein_btm_blue {
    width: 100%;
    height: 30px;
    line-height: 22px;
    border-radius: 0px;
    text-align: center;
    padding: 3px 25px;
    background: rgb(129, 211, 251);
    border-radius: 0px;
}

.dinein_btm_green {
    width: 100%;
    height: 30px;
    line-height: 22px;
    border-radius: 0px;
    text-align: center;
    padding: 3px 25px;
    background: rgb(170, 242, 0);
    border-radius: 0px;
}

.dinein_btm_yellow {
    width: 100%;
    height: 30px;
    line-height: 22px;
    border-radius: 0px;
    text-align: center;
    padding: 3px 25px;
    background: rgb(255, 200, 0);
    border-radius: 0px;
}

.dinein_btm_orange {
    width: 100%;
    height: 30px;
    line-height: 22px;
    border-radius: 0px;
    text-align: center;
    padding: 3px 25px;
    background: rgb(255, 128, 0);
    border-radius: 0px;
}

.dinein_right {
    font-weight: 400;
    font-size: 25px;
    line-height: 38px;
    color: rgb(43, 38, 35);
}

.dinein_list {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dinein_list .addon_item_contents label {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
}

.dinein_option {
    width: 67%;
    list-style-type: none;
    display: flex;
    align-items: center;
}

.invoice_option {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.invoice_option b {
    border-radius: 4px;
    margin-right: 15px;
    background: rgb(255, 255, 255);
    display: inline-block;
    width: 38px;
    height: 38px;
}

.invoice_option span {

    border-radius: 3px;
    display: inline-block;
    align-items: center;
    height: 15px;
    width: 15px;
    background: rgb(231, 231, 231);
}

.dinein_option b {
    border-radius: 4px;
    margin-right: 15px;
    background: rgb(255, 255, 255);
    display: inline-block;
    width: 38px;
    height: 38px;
}

.dinein_option span {

    border-radius: 3px;
    display: inline-block;
    align-items: center;
    height: 15px;
    width: 15px;
    background: rgb(231, 231, 231);
}

.dine_blue {
    background: rgb(129, 211, 251) !important;
}

.dine_green {
    background: rgb(170, 242, 0) !important;
}

.dine_yellow {
    background: rgb(255, 200, 0) !important;
}

.dine_orange {
    background: rgb(255, 128, 0) !important;
}


.dinein_option li {
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dinein_option b {
    justify-content: center;
    border-radius: 4px;
    margin-right: 15px;
    background: rgb(255, 255, 255);
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
}

.dinein_option li:last-child {
    margin-right: 0px;
}

.invoice_option li {
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invoice_option b {
    justify-content: center;
    border-radius: 4px;
    margin-right: 15px;
    background: rgb(255, 255, 255);
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
}

.invoice_option li:last-child {
    margin-right: 0px;
}

.switch_table_cont {
    padding: 4px;
    background: rgb(240, 240, 243);
    box-shadow: -5px -5px 7px rgb(255, 255, 255), 5.5px 5.5px 7px rgba(174, 174, 192, 0.4);
    border-radius: 5px;
}

.swtich_table_top {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dinein_table_cont .col-sm-2 {
    padding: 9px;
    width: 12.5%;
}

button.roof_btn {
    /* background: #F0F0F3; */
    box-shadow: -5px -5px 7px #ffffff, 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 4px;
    border: none;
    padding: 8px 16px;
}

.switch_text {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.switch_table {
    margin-bottom: 4px;
    background: rgb(82, 73, 67);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    padding: 11px 16px;
}

.switch_table_price {
    padding: 7px 5px;
    background: rgb(255, 255, 255);
    border-radius: 7px;
}

.price_holder {
    padding: 20px 14px;
    border-top: 1px solid rgb(217, 217, 217);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price_holder .item_name {
    width: 35%;
}

.price_holder .qty {
    width: 40%;
}

.price_holder .price {
    width: 30%;
}

.switch_table_total {
    background: rgb(255, 246, 237);
    border-radius: 0px 0px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
}

.switch_total {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: rgb(82, 73, 67);
}

.switch_price {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: rgb(82, 73, 67);
}

.qty button {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(218, 218, 218);
    border-radius: 6px;
    padding: 6px 15px;
}

button.switch_minus {
    padding: 6px 10px;
}

.price button {
    border: none;
    background: none;
}

.switch_bill_cont {
    margin-top: 10px;
    padding: 4px;
    background: rgb(255, 255, 255);
    border-radius: 7px;
}

.split_bill {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.split_bill_btn {
    margin-right: 5px;
    background: rgb(252, 137, 25);
    border-radius: 4px;
    border: none;
    color: rgb(255, 255, 255);
    padding: 10px 17px;
}

.switch_discount {
    width: 100%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(82, 73, 67);
    border-radius: 4px;
    color: rgb(255, 255, 255);
}

.switch_discount_100 {
    width: 100%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(82, 73, 67);
    border-radius: 4px;
    color: rgb(255, 255, 255);
}

.switch_discount button {
    border: none;
    background: rgb(124, 113, 105);
    border-radius: 2px;
    /* padding: 4px; */
    height: 32px;
}

.switch_discount_100 button {
    border: none;
    background: rgb(124, 113, 105);
    border-radius: 2px;
    /* padding: 4px; */
    height: 32px;
}

.switch_discount_text {
    padding: 0px 10px;
}

.bill_update {
    padding: 8px 0px;
    border-top: 1px solid rgb(234, 234, 234);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bill_text {
    margin-left: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #524943;
    width: 35%;
}

.bill_input input {
    width: 155px;
    height: 40px;
}

.switch_table_btns button {
    margin: 0px 5px;
    font-size: 12px;
    width: 92px;
    padding: 0px;
    height: 40px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(82, 73, 67);
    border-radius: 4px;
}

.bill_update .discount_order_type {
    width: 32%;
    display: block;
}

.bill_check {
    width: 35%;
    border-right: 1px solid rgb(252, 137, 25);
}

button.bill_btn {
    color: rgb(255 255 255);
    margin-left: 5px;
    background: rgb(58, 189, 58);
    border-radius: 4px;
    border: none;
    padding: 11px 14px;
}

.food_item_cont {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.food_item_cont .manage_search {
    margin: 0;
}

.food_img img {
    border-radius: 5px;
    width: 100%;
}

.food_item_name {
    padding: 4px 0px;
    font-size: 11px;
}

.food_item {
    min-height: 170px;
    background: rgb(255, 255, 255);
    border-bottom: 3px solid rgb(58, 189, 58);
    border-radius: 6.61429px;
    padding: 5px;
    margin-right: 12px;
}

.food_item:last-child {
    margin-right: 0px;
}

.food_item_list {
    margin-bottom: 11px;
    display: flex;
    align-items: center;
}

button.food_btn img {
    border-radius: 5px;
}

button.food_btn {
    border: none;
    background: none;
}

.add_item {
    padding-left: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.food_slider_btn {
    width: 10%;
    padding: 8px 30px 8px 15px;
    background: rgb(255, 255, 255);
    border: 1px solid #FC8919;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.food_slider_cont span {
    font-size: 10px;
    margin-left: 8px;
}

.management_container .col-sm-4 {
    padding-left: 0px;
}

.switch_table_btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 5px;
}

button.kot {
    background: rgb(252, 137, 25);
    border-radius: 4px;
    border: none;
    color: rgb(255, 255, 255);
}

.bill_type .radio span {
    border: 1px solid rgb(252, 137, 25);
    background-color: rgb(255, 255, 255);
}

.bill_type .radio span:after {
    background: rgb(252, 137, 25);
}

.bill_check label {
    margin-bottom: 0px;
}

.bill_type {
    padding: 8px 0px;
}

.food_item_cont .manage_filter {
    background-color: rgb(255, 255, 255);
}

.combo_btn {
    display: flex;
    align-items: center;
}

.food_slider_cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.food_slider_cont .management_tab {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    width: calc(100% - 120px);
}

.food_slider_cont .management_tab .slick-list.draggable {
    float: left;
    width: 100%;
}

.food_item_popup .modal-footer {
    padding: 8px;
    text-align: none;
}

.preparation_time button img {
    width: 15px;
}

.delivery_popup .modal-footer {
    background: rgb(255, 246, 237);
    border-radius: 0px 0px 3px 3px;
    padding: 8px;
    text-align: right;
    border-top: none;
}

.delivery_table table {
    border-collapse: separate;
    border-spacing: 0 5px;
    margin-bottom: 8px !important;
}

.delivery_popup .modal-dialog {
    width: 1100px;
    margin: 30px auto;
}

.popup_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

button.popup_cancel {
    padding: 9px 40px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(255, 83, 83);
    border-radius: 5px;
}

button.popup_add {
    background: rgb(58, 189, 58);
    border-radius: 4px;
    padding: 9px 45px;
    color: rgb(255, 255, 255);
    border: none;
}

.food_type_cont {
    margin-bottom: 10px;
    padding: 10px 16px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(253, 161, 71);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    width: 100%;
}

.food_type_contn {
    padding: 10px 16px;
    margin-bottom: 10px;
    border: 1px solid rgb(253, 161, 71);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    width: 100%;
    background: rgb(253, 161, 71) !important;

}

.food_type_contn .food_type {
    color: rgb(255, 255, 255);
}

.food_type_contn .food_price {
    color: rgb(255, 255, 255);
}

.food_type {
    margin-bottom: 3px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(43, 38, 35);

}

.test ul {
    padding: 20px 20px;
    list-style-type: none;
}

.food_price {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: rgb(252, 137, 25);

}

#Div2 {
    display: none;
}

div#myDIV {
    border: 1px solid rgb(227, 227, 227);
    border-radius: 4px;
    padding: 4px;
    margin-top: 5px;
}

.discount_charges li {
    padding: 9px 13px;
    background: rgb(245, 245, 245);
    border-radius: 2px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order_name span {
    margin-right: 10px;
}

.order_dial span {
    background: rgb(255, 246, 237);
    border-radius: 4px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.table_order_cont {
    margin-bottom: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(82, 73, 67, 0.2);
    border-radius: 6px;

}

.table_order_head {
    padding: 7px 10px;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px rgb(82 73 67 / 20%);
    border-radius: 6px 6px 0px 0px;
}

.popup_order_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px rgb(82 73 67 / 20%);
    border-radius: 6px 6px 0px 0px;
}

.popup_order_head button {
    border: none;
    background: none;
}

.order_details_head {
    padding: 15px 22px;
    display: flex;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px rgb(82 73 67 / 20%);
    border-radius: 6px 6px 0px 0px;
    align-items: center;
    justify-content: space-between;
}

.bill_detail_cont {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(238, 238, 238);
    border-radius: 5px;
    /* padding: 13px; */
}

.bill_head {
    padding: 13px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(43, 38, 35);
    border-bottom: 1px solid rgb(238, 238, 238);
}

.bill_list {
    padding: 13px;
}

.bill_list ul {
    list-style-type: none;
}

.bill_list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bill_total {
    border-top: 1px solid rgb(58, 58, 58);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 15px;
}

.order_location_cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order_id {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order_address {
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: #2B2623;
    padding-left: 24px;
}

.driver_cont {
    margin-bottom: 15px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(242, 242, 242);
    border-radius: 3px;
    padding: 10px 5px;
}

.pickup_cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(242, 242, 242);
    border-radius: 3px;
    padding: 10px 5px;
}

.pickup_cont_arriving {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(242, 242, 242);
    border-radius: 3px;
    padding: 10px 5px;
}

.pickup_cont_arriving .pickup_state {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.delivered_cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(242, 242, 242);
    border-radius: 3px;
    padding: 10px 5px;
}

.delivered_cont .pickup_state {
    width: 27%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.delivered_state {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 31%;
}

.deivery_cont_arriving .pickup_state {
    width: 27%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deliver_state {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 31%;
}

.pickup_state {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 35%;

}

.deliver_msg {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: rgb(252, 137, 25);
    background: hsl(0, 0%, 93%);
    border-radius: 3px;
    padding: 9px 16px;
}

.arriving_msg {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: rgb(99, 99, 99);
    background: rgb(238, 238, 238);
    border-radius: 3px;
    padding: 8px 16px;
}

.delivered_msg {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: rgb(58, 189, 58);
    background: rgb(216, 255, 216);
    border-radius: 3px;
    padding: 10px 16px;
}

.driver_cont span {
    margin-right: 10px;
}

.order_table {

    padding: 15px 5px;

}

.order_popup_table {
    margin-bottom: 12px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(238, 238, 238);
    border-radius: 5px;
    /* padding: 15px 5px; */
}

.order_popup_table tr td {
    border-top: none !important;
}

.order_popup_table tr td b {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: rgb(82, 73, 67);
}

.order_popup_table tr td span {
    margin-right: 15px;
}

.order_popup_table thead tr th {
    padding: 17px 15px;
}


.order_popup_table thead tr th:first-child {
    border-radius: 5px 0px 0px 0px;
}

.order_popup_table thead tr th:last-child {
    border-radius: 0px 5px 0px 0px;
}

.order_popup_table thead tr {
    color: rgb(255 255 255);
    background: rgb(43 38 35);
    border-radius: 5px;
}

.order_popup_table tr th {
    font-size: 14px;
    font-weight: 400;
}

.order_popup_table .table {
    margin-bottom: 0px;
}

.addon_lists {
    border-top: 1px solid rgb(226, 226, 226);
}

.order_table tr td {
    border-top: none !important;
}

.order_table tr td b {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #524943;
}

.order_table tr td span {
    margin-right: 15px;
}

.delivery_table tr td {

    vertical-align: middle !important;
    border-top: none !important;
}

.order_bill {
    padding: 5px;
    background: rgb(246, 246, 246);
    border-radius: 3px;
    margin-bottom: 8px;
}

.order_id b {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: rgb(252, 137, 25);
}

.total_bill button {
    margin-right: 10px;
    padding: 8px 18px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(58, 189, 58);
    border-radius: 4px;
}

.order_bill_container {
    padding: 5px;
    background: rgb(246, 246, 246);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order_table table {
    margin-bottom: 0px;
}

.menu_list {
    position: absolute;
    top: 50px;
    left: -120px;
    width: 226px;
    padding: 4px;
    list-style-type: none;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px rgb(35 62 143 / 20%);
    border-radius: 4px;
    z-index: 1;
}

.menu_list li.active {
    border: 1px solid rgb(252, 137, 25);
    color: rgb(252, 137, 25);
    border-radius: 2px;

}

.menu_list li.active a {
    color: rgb(252, 137, 25) !important;
}

.menu_list li {

    margin-bottom: 3px;
    border: 1px solid rgb(58, 189, 58);
    border-radius: 2px;
    padding: 10px;
}

.menu_list li a {
    color: rgb(58, 189, 58);
}

.order_accept {
    background: rgb(246, 246, 246);
    border-radius: 3px;
    border: none;
    padding: 8px 30px;
    color: rgb(58, 189, 58);
    border: 1px solid rgb(58, 189, 58);
}

.order_accept_type {
    position: relative;
    background: rgb(246, 246, 246);
    border-radius: 4px;
    border: none;
    padding: 8px 10px 8px 10px;
    color: rgb(58, 189, 58);
    border: 1px solid rgb(58, 189, 58);
}

.order_accept_type span {
    margin-left: 10px;
}

.order_reject {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(255, 83, 83);
    border-radius: 5px;
    color: rgb(255, 83, 83);
    padding: 8px 18px;
}

.delivered_fade {
    padding: 10px 26px;
    color: rgb(255 255 255);
    background: rgba(58, 189, 58, 0.1);
    border-radius: 4px;
    border: none;
}

.delivered_no_fade {
    padding: 10px 26px;
    color: rgb(255 255 255);
    background: rgb(58, 189, 58);
    border-radius: 4px;
    border: none;
}

button.order_view {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(82, 73, 67);
    border-radius: 5px;
    padding: 8px 25px;
}

.food_item_popup .modal-content {
    padding: 3px;
}

.food_item_popup .modal-header {
    padding: 0px;
    border-bottom: none;
}

.food_item_popup .switch_discount {
    padding: 8px;
    width: 100%;
}

.delivery_popup .modal-content {
    padding: 3px;
}

.delivery_popup label {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: rgb(0, 0, 0);
}

.delivery_popup .modal-header {
    padding: 0px;
    border-bottom: none;
}

.delivery_popup .switch_discount {
    width: 100%;
    margin-bottom: 20px;
}

.delivery_popup button.popup_add {
    background: rgb(58, 189, 58);
    border-radius: 4px;
    padding: 9px 27px;
    color: rgb(255, 255, 255);
    border: none;
}

.delivery_popup button.popup_cancel {
    padding: 9px 40px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(255, 83, 83);
    border-radius: 5px;
    background: rgb(252, 137, 25);
    border-radius: 4px;
    color: rgb(255, 255, 255);
}

.delivery_table button {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(253, 161, 71);
    border-radius: 4px;
    padding: 6px 32px;
}

.delivery_table tr {
    background: rgb(248, 248, 248);
    border-radius: 7px;
}

.delivery_head {
    margin-bottom: 15px;
}

.delivery_popup .modal-body {
    position: relative;
    padding: 0px 10px;
}

.type_small {
    background: rgb(252, 137, 25);
    border: 1px solid rgb(253, 161, 71);
    box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
    border-radius: 5px;
    color: rgb(255, 255, 255);
    display: block;
}


.order-count_cont {
    white-space: nowrap;
    overflow: auto;
    display: flex;
    align-items: center;
}

.order_type {
    margin-bottom: 10px;
    width: 20%;
    margin-right: 10px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255, 255, 255);
    border-radius: 3px;
}

.order_type_active {
    margin-bottom: 10px;
    width: 20%;
    margin-right: 10px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255, 255, 255);
    border-radius: 3px;
    border: 1px solid rgb(252, 137, 25);
}

.order_type_active span {
    color: rgb(252, 137, 25);
    background: rgb(255, 230, 205);
    border-radius: 2px;
    height: 33px;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 33px;
}

.order_type span {
    color: rgb(43, 38, 35);
    background: rgb(240, 240, 243);
    border-radius: 2px;
    height: 33px;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 33px;
}

.order_type_active b {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
    padding: 0px 30px;
}

.order_type b {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
    padding: 0px 30px;
}

.total_order_cont {
    margin-bottom: 20px;
    float: left;
    width: 100%;
    background-color: rgb(240, 240, 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 15px;
}

.total_order_cont .food_item_cont {
    margin-bottom: 18px;
}

.total_order_cont .food_item_head {
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    color: rgb(43, 38, 35);
}

.order_details_container {
    margin-bottom: 20px;
    float: left;
    width: 100%;
    background-color: rgb(240, 240, 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    padding: 11px;
}

.order_details_container .food_item_cont {
    margin-bottom: 18px;
}

.order_details_container .food_item_head {
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    color: rgb(43, 38, 35);
}

.delivery_input_cont {
    padding: 18px 0px 30px 0px;
}

.food_item_popup .col-sm-3 {
    padding: 9px !important;
}

.discount_charges input[type="text"] {
    padding: 6px;
    border: none;
    text-align: right;
    background: rgb(255, 255, 255);
    border-radius: 3px;
    width: 30%;
}

button.pickup_call {
    background: rgb(58, 189, 58);
    padding: 8px;
    border: none;
    border-radius: 3px;
}

button.pickup_loc {
    background: rgb(252, 139, 26);
    border-radius: 3px;
    padding: 8px 10px;
    border: none;
}

.pickup_name span {
    margin-right: 10px;
}

.food_item_container .col-sm-2 {
    padding: 5px;
    width: 20%;
}

.driver_payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preparation_time {
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgb(170, 170, 170);
    border-radius: 7px;
}

.preparation_time button {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(218, 218, 218);
    border-radius: 5px;
    height: 29px;
}

.delivery_input_cont input.form-control {
    border: 1px solid rgb(170, 170, 170);
    border-radius: 7px;
    height: 40px;
}

.discount_charges ul li b {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: rgb(82, 73, 67);
}

.discount_charges li a {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    text-decoration-line: underline;
    color: rgb(252, 137, 25);
}

.delivery_header.flt {
    padding: 15px 30px;
    border-bottom: 1px solid #FC8919;
}

.boy_info {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.boy_profile {
    margin-right: 10px;
}

.orderdetails_id {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: rgb(0, 0, 0);
}

.delivery_date {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgb(0, 0, 0);
}

.customer_details_cont {
    border-top: 1px solid rgb(217, 217, 217);
    padding: 16px;
}

.customer_details {
    padding: 0px 19px 30px 0px;
    border-right: 1px solid rgb(217, 217, 217);
}

.customer_name {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    color: rgb(43, 38, 35);
}

.customer_name span {
    margin-right: 10px;
}

.customer_address {
    padding-left: 22px;
    font-weight: 300;
    font-size: 13px;
    line-height: 20px;
    color: rgb(43, 38, 35);
}

.customer_address b {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(43, 38, 35);
}

.item_details ul li b {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: rgb(82, 73, 67);
}

.item_details ul li span b {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: rgb(82, 73, 67);
}

.item_details ul {
    list-style-type: none;
}

.item_details li {
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item_type_holder {
    padding-left: 50px;
}

.item_type_list {
    margin-left: 10px;
}

.document_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 7px 5px 13px;
}

.uploaded {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgb(0 115 46);
}

.doc_delete {
    padding: 8px 12px;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgb(82, 73, 67);
    background: rgb(255 255 255);
    border: 1px solid rgb(82 73 67);
    border-radius: 4px;
    margin-right: 5px;
}

.doc_reupload {

    padding: 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgb(255 255 255);
    background: rgb(82 73 67);
    border-radius: 4px;
    border: none;
}

.document_browse {
    padding-top: 50px;
    height: 170px;
    background: rgb(255 255 255);
    text-align: center;
}

.uploaded span {
    padding: 5px 10px;
    border-radius: 50px;
    background: rgb(223, 255, 236);
    margin-right: 10px;
}

.browse_doc u {
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
    color: rgb(82 73 67);
}

.browse_doc u span {
    font-weight: 600;
}

/*/ 



/*slick slider*/

.slick-initialized .slick-slide {
    margin-right: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    border-radius: 3px;
    padding: 12px 5px;
    /* display: block; */
}

button.slick-prev.slick-arrow {
    width: 35px;
    display: inline-block;
    color: transparent;
    border: 0px;
    position: absolute;
    z-index: 9;
    background-color: transparent;
}

button.slick-prev.slick-arrow::before {
    position: absolute;
    content: '\f053';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: rgb(255, 255, 255);
    right: 33px;
    top: 0px;
    height: 47px;
    width: 88%;
    line-height: 48px;
    text-align: center;
    background: rgb(82, 73, 67);
    font-size: 12px;
    transition: 0.5s all ease-in-out;
    border-radius: 3px 0px 0px 3px;
}

button.slick-next.slick-arrow {
    height: 30px;
    width: 35px;
    display: inline-block;
    color: transparent;
    border: 0px;
    position: absolute;
    z-index: 9;
    background-color: transparent;
}

button.slick-next.slick-arrow::before {
    position: absolute;
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: rgb(255, 255, 255);
    right: 32px;
    top: 0px;
    width: 88%;
    line-height: 48px;
    text-align: center;
    background: rgb(82, 73, 67);
    font-size: 12px;
    transition: 0.5s all ease-in-out;
    border-radius: 0px 3px 3px 0px;
}


/*button toggle*/
.knobs,
.layer {
    position: absolute;
    top: 0;
    right: 4;
    bottom: 0;
    left: 0;
    height: 22px;
}

.button_toggle {
    position: relative;
    width: 56px;
    height: 22px;
    overflow: hidden;
}

.button_toggle input {
    height: 22px;
}

.button_toggle.r,
.button_toggle.r .layer {
    border-radius: 100px;
}

.button_toggle.b2 {
    border-radius: 2px;
}

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    transition: 0.3s ease all;
    z-index: 1;
    background-color: rgba(255, 233, 233, 1);
    border: 1px solid rgba(222, 27, 30, 1);
    border-radius: 4px;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.12);
}

#button-12 .knobs:before,
#button-12 .knobs:after,
#button-12 .knobs span,
#button-12 .knobs span:before,
#button-12 .knobs span:after {
    position: absolute;
    top: 4px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    border-radius: 2px;
    transition: 0.3s ease all;
}

#button-12 .knobs:before {
    content: "";
    background-image: url(../images/toggle-off.png);
    background-repeat: no-repeat;
    background-position: center;
    left: 4px;
}

#button-12 .knobs:after {
    content: "";
    background-image: url(../images/toggle-on.png);
    background-repeat: no-repeat;
    background-position: center;
    right: 4px;
}

#button-12 .knobs:before,
#button-12 .knobs:after {
    width: 21px;
    height: 14px;
    color: #4e4e4e;
    padding: 4px 4px;
    z-index: 1;
}

#button-12 .knobs span {
    display: inline-block;
    z-index: 2;
}

#button-12 .knobs span,
#button-12 .knobs span:before,
#button-12 .knobs span:after {
    width: 19px;
    height: 14px;
    padding: 4px 4px;
}

#button-12 .knobs span:before,
#button-12 .knobs span:after {
    content: "";
    top: 0;
}

#button-12 .knobs span:before {
    left: -28px;
    background-color: rgb(255, 255, 255);
}

#button-12 .knobs span:after {
    right: -33px;
    background-color: rgb(255, 255, 255);
}

#button-12 .checkbox:checked+.knobs span:before {
    left: 4px;
}

#button-12 .checkbox:checked+.knobs span:after {
    right: -74px;
}

#button-12 .checkbox:checked~.layer {
    /* background-color: rgba(255, 233, 233, 1);
    border: 1px solid rgba(222, 27, 30, 1); */
    background-color: rgba(131, 248, 166, 1);
    border: 1px solid rgba(0, 114, 34, 1);
    border-radius: 4px;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.12);
}

/*end*/

.payment_box {
    width: 48%;
    margin-bottom: 0px;
}

.pizza_variant_box {
    margin-bottom: 25px;
}

.pizza_variant .pizza_variant_box:last-child {
    margin-bottom: 10px;
}

.pizza_variant_head {
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    color: #524943;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pizza_variant_head span {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    text-align: right;
    color: #524943;
}

.pizza_variant_cont {
    border: 1px solid rgb(234 234 234);
    border-radius: 4px;
    padding: 16px 12px;
}

.pizza_variant_cont li {
    list-style-type: none;
    margin-bottom: 14px;
}

.pizza_variant_cont li:last-child {
    margin-bottom: 0px;
}

.pizza_radio li [type="radio"]:checked,
.pizza_radio li [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.pizza_radio li [type="radio"]:checked+label,
.pizza_radio li [type="radio"]:not(:checked)+label {
    position: relative;
    padding-right: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(82, 73, 67);
    margin: 0px;
}

.pizza_radio li [type="radio"]:checked+label:before,
.pizza_radio li [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #524943;
    border-radius: 100%;
    background: #fff;
}

.pizza_radio li [type="radio"]:checked+label:after,
.pizza_radio li [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #524943;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.pizza_radio li [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.pizza_radio li [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


.pizza_check li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pizza_check input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.pizza_check label {
    position: relative;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(82, 73, 67);
    margin: 0px;
}

.pizza_check label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid rgb(0, 0, 0);
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 9px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 3px;
    float: right;
}

.pizza_check input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    right: 7px;
    width: 6px;
    height: 14px;
    border: solid rgb(0, 0, 0);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pizza_check_left {
    display: flex;
    align-items: center;
}

.pizza_check_left span {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: rgb(82 73 67);
    margin-left: 10px;
}

.popup_price {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: rgb(252, 137, 25);
}

.payment_type_cont {
    display: flex;
}

.payment_type_cont li {
    list-style-type: none;
    /* margin-bottom: 14px; */
}

.payment_type_cont li:last-child {
    margin-bottom: 0px;
}

.payment_radio li [type="radio"]:checked,
.payment_radio li [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.payment_radio li [type="radio"]:checked+label,
.payment_radio li [type="radio"]:not(:checked)+label {
    position: relative;
    padding-right: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgb(0, 0, 0);
    margin: 0px;
}

.payment_radio li [type="radio"]:checked+label:before,
.payment_radio li [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    right: 62px;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(252, 137, 25);
    border-radius: 100%;
    background: #fff;
}

.payment_radio li [type="radio"]:checked+label:after,
.payment_radio li [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: rgb(252, 137, 25);
    position: absolute;
    top: 5px;
    right: 67px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.payment_radio li [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.payment_radio li [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/*popup switch-table-discount */
.current_table {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(82, 73, 67);
    padding: 15px;
    color: rgb(255 255 255);
}

.customer_table {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(82, 73, 67);
    padding: 9px;
    color: rgb(255 255 255);
}

.switch_table_popup .modal-body {
    padding: 0px;
}

.switch_table_input label {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
}

.switch_table_input input {
    height: 50px;
}

.switch_table_input {
    padding: 30px 15px;
}

.discount_table_input {
    padding: 30px 15px;
    background: rgb(240, 240, 243);
}

.discount_table_input label {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
}

.discount_table_input input {
    height: 50px;
}

.switch_table_popup h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(0, 0, 0);
}

.switch_cancel {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(82, 73, 67);
    border-radius: 4px;
    padding: 12px 22px;
}

.switch_tableswitch {
    border: none;
    padding: 12px 13px;
    background: rgb(252, 137, 25);
    border-radius: 4px;
    color: rgb(255, 255, 255);
}

.customer_add_btn {
    width: 99px;
    border: none;
    padding: 12px 13px;
    background: rgb(252, 137, 25);
    border-radius: 4px;
    color: rgb(255, 255, 255);
}

.switch_close {
    background: rgb(82, 72, 66);
    box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.25), 0px -1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    border: none;
}

.switch_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.discount_popup_header {
    background: #F0F0F3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.switch_popup_head {
    width: 50%;
}

.switch_popup_btn {
    width: 90%;
    text-align: right;
}

.switch_table_input select.form-control {
    height: 50px;
    margin-bottom: 15px;
}

.discount_table_input select.form-control {
    height: 50px;
    margin-bottom: 15px;
}

.discount_option {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.useme {
    background: rgb(240, 240, 243);
    padding: 16px 12px;
    border-bottom: 1px solid rgb(216, 216, 216);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.boy_details {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}

button.customer_btn {
    background: #524943;
    border-radius: 4px;
    border: none;
    /* display: block; */
    color: #F0F0F3;
    font-size: 9px;
    font-weight: 500;
}

.customer_btn img {
    width: 13px;
    height: 15px;
}

.customer_btn {
    margin-right: 8px;
    width: 65px;
    height: 38px;
    background: rgb(82 73 67);
    border-radius: 4px;
    border: none;
    color: #F0F0F3;
    font-size: 9px;
    font-weight: 500;
}

.customer_cont {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.custmer_input label {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.custmer_input {
    padding: 20px 0px;
}

.customer_table_input {
    padding: 20px 9px 18px 9px;
    background: rgb(240, 240, 243);
    border-radius: 5px;
}

.customer_container {
    padding: 15px;
}

.customer_table_input label {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.customer_popup .modal-dialog {
    width: 1000px;
}

.cust_switch_close {
    background: #FC8919;
    box-shadow: 2px 1px 4px rgb(0 0 0 / 25%), 0px -1px 4px rgb(0 0 0 / 25%);
    border-radius: 2px;
    /* background: rgb(82, 72, 66); */
    box-shadow: 2px 1px 4px rgb(0 0 0 / 25%), 0px -1px 4px rgb(0 0 0 / 25%);
    border-radius: 2px;
    border: none;
}

.customer_head {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #524943;
}

/* .invoice_view_table {
    border: 1px solid #EEEEEE;
    border-radius: 6px;
    margin-bottom: 10px;
} */
.invoice_view_table {
    padding: 10px;
    border: 1px solid #EEEEEE;
    border-radius: 6px;
    margin-bottom: 10px;
}

.item_type {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.item_type button {
    border: none;
    background: none;
}

.item_type b {
    margin-right: 5px;
}

.customer_total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #524943;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
}

.bill_btns button {
    margin-right: 5px;
}

.popup_btns button {
    margin-right: 5px;
}

button.popup_add {
    background: rgb(58, 189, 58);
    border-radius: 4px;
    padding: 10px 45px;
    color: rgb(255, 255, 255);
    border: none;
}

.running-restraunt-container .management_tab li {
    list-style-type: none;
    width: 16%;
}

.restraunt_location_cont {
    padding: 9px;
    background: #fff;
    box-shadow: 0px 0px 10px rgb(35 20 162 / 10%);
    border-radius: 7px;
}

.restraunt_address_cont {
    padding: 14px;
    background: rgb(242 242 242);
    border-radius: 4px;
}

.restaunt_add_head {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 14px;
    text-transform: uppercase;
    color: rgb(0 0 0);
}

.restraunt_address {
    margin-bottom: 28px;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: rgb(94 94 94);
}

.restraunt_map {
    border: 1px solid rgb(233 233 233);
    border-radius: 4px;
    margin-top: 8px;
}

.restraunt_loc_head {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(43 38 35);
}

.restraunt_location {
    margin-top: 10px;
}

.restraunt_location input.form-control {
    background: rgb(255 255 255);
    border: 1px solid rgb(133 133 133);
    border-radius: 6px;
    height: 50px;
}

.restraunt_location input::placeholder {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.restraunt_search input {
    height: 40px;
    border: 1px solid rgb(133 133 133);
    border-radius: 3px;
}

.restraunt_type {
    padding: 10px;
    background: rgb(255 255 255);
    border-radius: 4px;
}

.food_type_holder {
    background: rgb(255 255 255);
    border: 1px solid rgb(133 133 133);
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(43, 38, 35);
    padding: 10px;
}

.type_head {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    color: rgb(43 38 35);
}

.cusine_head {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    color: rgb(43 38 35);
}

.cusine_text {
    background: rgb(244 244 244);
    border-radius: 7px;
    padding: 14px;
}

.cusine_text1 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(0 0 0);
}

.cusine_text2 {
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(78 78 78);
}

.cusine_input_holder {
    display: flex;
    align-items: center;
}

.cusine_input_holder input {
    background: #FFFFFF;
    border: 1px solid #858585;
    border-radius: 6px;
    height: 50px;
    margin-right: 14px;
}

.restraunt_timimg_cont {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgb(217 217 217);
}

.restraunt_table thead tr {
    background: #2B2623;
    border-radius: 4px;
}

.restraunt_table thead tr th {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(255 255 255);
}

.restraunt_table tbody tr td {
    border-top: none;
}

.restraunt_table tbody tr td input.form-control {
    background: rgb(255 255 255);
    border: 1px solid rgb(133 133 133);
    border-radius: 6px;
    height: 39px;
    width: 169px;
}

.restraunt_timing_head {
    margin-bottom: 6px;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: rgb(43 38 35);
}

.restraunt_timimg_cont ul {
    background: #FFFFFF;
    border-radius: 6px;
    list-style-type: none;
}

.document_container {
    border: 1px dashed rgb(82 73 67);
    border-radius: 4px;
}

.document_top {
    padding: 10px;
}

.document_top img {
    width: 100%;
}

.document_btm {
    margin-top: 0px !important;
    text-align: right;
    padding: 5px;
    background: rgb(255 255 255);
    border-radius: 0px;
}

.document_btm button {
    width: 91px;
    padding: 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgb(255 255 255);
    background: rgb(82 73 67);
    border-radius: 4px;
    border: none;
    height: 35px;
}

.retrauntt_container .item_container {
    padding: 10px;
}

.document_head {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(43 38 35);
    margin-bottom: 15px;
}

.document_type_head {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(43 38 35);
    margin-bottom: 10px;
}

.document_browse {
    background: rgb(255 255 255);
    padding: 52px 20px;
    text-align: center;
}

.browse_doc {
    margin-top: 15px;
}

.document_browse_cont {
    padding: 10px;
}

.privilege_cont {
    padding: 10px;
    width: 289px;
}

.privilege_cont li {
    margin-bottom: 15px;
}

.privilege_cont .item_status {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.login_credential_cont input {
    height: 50px;
    width: 335px;
    background: rgb(255 255 255);
    border: 1px solid rgb(133 133 133);
    border-radius: 6px;
    margin-bottom: 15px;
}

.login_credential_cont input::placeholder {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
}

.edit_previlege_cont {
    border-right: 1px solid rgb(217 217 217);
}

.prev_btn {
    width: 185px;
    padding: 15px 0px;
    border: 1px solid rgb(82 73 67);
    border-radius: 4px;
}

.add_restraunt_content {
    background: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
    text-align: center;
    padding: 70px 40px;
}

.popup_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 12px;
    text-align: center;
    margin-bottom: 15px;
    color: rgb(76 175 80);
}

.popup_text1 {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.3px;
    color: rgb(82 73 67);
}

.popup_success {
    margin-bottom: 25px;
}

.dash_btn {
    width: 165px;
    padding: 15px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgb(255 255 255);
    background: rgb(82 73 67);
    box-shadow: 0px 0px 6px rgb(0 0 0 / 26%);
    border-radius: 4px;
}

.view_btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgb(255 255 255);
    background: rgb(252 137 25);
    box-shadow: 0px 0px 6px rgb(0 0 0 / 26%);
    border-radius: 4px;
    border: none;
    padding: 15px;
    width: 165px;
}

.popup_btns {
    margin-top: 20px;
    text-align: right;
}

.restraunt_details_left {
    padding: 5px 5px 5px 5px;
}

.retraunt_detail_container {
    background: rgb(240 240 243);
    box-shadow: -5px -5px 7px rgb(255 255 255), 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
}

.restraunt_details_right .edit_permission_type {
    margin-bottom: 5px;
}

.restraunt_details_right .edit_permission_type:last-child {
    margin-bottom: 0px;
}

.time_table_head {
    margin-bottom: 7px;
}

.restraunt_timing_table {
    padding: 13px 15px;
    background: rgb(255 255 255);
    border-radius: 4px;
    margin-bottom: 5px;
}

.restraunt_timing_table table tr td {
    border-top: none;
}

.restraunt_timing_table table thead tr {
    background: rgb(240 240 243);
    border-radius: 4px;
}

.restraunt_timing_table table thead tr th {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(82 73 67);
}

/* .food_image{
    text-align: center;
    padding: 50px;
} */

.food_image_cont {
    margin-bottom: 5px;
    padding: 15px 19px;
    background: rgb(255 255 255);
    border-radius: 4px;
}

.food_image img {
    width: 100%;
}

.food_head {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(43 38 34);
}

.retraunt_detail_container .col-sm-4 {
    padding-right: 0px;
}

.retraunt_detail_container .col-sm-8 {
    padding-left: 0px;
}

.restraunt_details_right {
    padding: 5px 5px 5px 0px;
}

.restraunt_document_list {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255 255 255);
    border-radius: 2px;
    padding: 25px 12px;
}

.card_holder {
    margin-right: 30px;
}

.card_holder:last-child {
    margin-right: 0px;
}

.card_image img {
    width: 100%;
}

.card_head {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    color: rgb(43 38 35);
}

.document_id_cont {
    padding: 10px;
    background: rgb(255 255 255);
    border-radius: 4px;
    margin-top: 8px;
}

.document_id_cont .document_container {
    background: rgb(245 245 245);
}

.document_id_cont .document_head {
    padding-top: 10px;
}

.boy_bank_details {
    padding: 15px;
    background: rgb(255 255 255);
    border-radius: 4px;
    margin-top: 9px;
}

.bank_details_head {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgb(43 38 35);
}

.boy_bank_details input {
    background: rgb(255 255 255);
    border: 1px solid rgb(133 133 133);
    border-radius: 6px;
    height: 50px;
    margin-bottom: 22px;
}

.boy_bank_details input::placeholder {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
}

.personal_info_cont input {
    height: 48px;
    margin-bottom: 20px;
}

.personal_info_cont input::placeholder {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
}

.personal_info_cont select {
    height: 48px;
    margin-bottom: 20px;
}

.summary_details_cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.work_summary {
    margin-bottom: 15px;
    padding: 10px;
    background: rgb(255 255 255);
    border-radius: 4px;
}

.summary_holder {
    width: 20%;
    background: rgb(255 255 255);
    border: 1px solid rgb(241 241 241);
    border-radius: 7px;
    margin: 10px;
}

.summary_head {
    background: rgb(240 240 243);
    border: 1px solid rgb(241 241 241);
    border-radius: 7px 7px 0px 0px;
    padding: 12px;
}

.summary_text {
    padding: 12px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: rgb(82 73 67);
}

.summary_text1 {
    padding: 0px 12px 12px 12px;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(63 63 63);
}

.track_location {
    padding: 2px 2px 2px 9px;
    color: rgb(255 255 255);
    background: rgb(252 137 25);
    border: none;
    font-weight: 400;
    font-size: 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.track_location i {
    margin-left: 5px;
    background: rgb(255 166 79);
    width: 33px;
    height: 33px;
    border-radius: 3px;
    line-height: 30px;
}

.personal_info_holder {
    background: rgb(255 255 255);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 5px;
}

.pending_amt_cont {
    background: rgb(255 255 255);
    border-radius: 5px;
    padding: 8px;
}

.pending_amt_top {
    border: 1px solid rgb(241 241 241);
}

.pending_amt_head.flt {
    background: rgb(240 240 243);
    border-radius: 0px 0px 4px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 2px 2px 12px;
}

.amt_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgb(82 73 67);
}

.amt_icon {
    background: rgb(215 215 215);
    border-radius: 2px;
    width: 29px;
    height: 29px;
    line-height: 27px;
    text-align: center;
}

.pending_amt {
    padding: 8px 0px 0px 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: rgb(252 137 25);
}

.update_settlement {
    margin-top: 5px;
    padding: 2px 2px 2px 15px;
    align-items: center;
    display: flex;
    border: none;
    background: rgb(252 137 25);
    border-radius: 4px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: rgb(255 255 255);
    justify-content: space-between;
}

.update_settlement i {
    line-height: 32px;
    width: 33px;
    background: rgb(255 166 79);
    border-radius: 3px;
    height: 33px;
    text-align: center;
}

.personal_info_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.work_select select {
    background: #FFFFFF;
    border: 1px solid #8B8B8B;
    border-radius: 4px;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: rgb(43 38 35);
    border-radius: 4px;
    height: 38px;

}

.work_select button {
    line-height: 18px;
    width: 38px;
    height: 38px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.personal_menu {
    padding-right: 0px !important;
}

.amount_menu {
    padding-left: 5px !important;
}

.hide_details_header {
    padding: 3px 3px 3px 15px;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    display: flex;
    align-items: center;
    color: rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(82 73 67);
    border-radius: 5px;
}

.hide_details_header button {
    background: transparent;
    border: none;
}

.hide_delivery_boy {
    padding: 15px;
}

.hide_delivery_boy li:nth-child(odd) {
    width: 42% !important;
}

.hide_delivery_boy li {
    width: 40% !important;
}

.document_types {
    padding: 14px 12px;
}

.account_head {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgb(43 38 35);
}

.account_menu {
    padding-right: 0px;
}

.card_menu {
    padding-left: 0px;
}

.filter_box {
    box-shadow: 0px 0px 30px rgb(0 0 0 / 30%);
    position: fixed;
    top: 120px;
    right: 0px;
    width: 0px;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    border-radius: 9px 0px 0px 9px;
    z-index: 1;
    transition: 0.5s;
}

.filter_head {
    background: #524943;
    border-radius: 5px 0px 0px 0px;
    color: rgb(255, 255, 255);
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
}

.filter_cont {
    height: calc(100vh - 60px);
    overflow-y: auto;
}

.filter_cont table thead th {
    font-weight: 300;
    font-size: 15px;
    color: rgb(0 0 0);
    background: rgb(239 239 239);
    border-radius: 3px;
    padding: 10px;
}

.filter_cont table tbody td {
    padding: 15px;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(63 63 63);
}

.filter_tag {
    font-weight: 500;
    font-size: 17px;
    color: rgb(146 39 143);
    margin-bottom: 35px;
}

.filter_form .form-group {
    margin-bottom: 26px;
}

.filter_form .form-group label {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgb(146 39 143);
}

.filter_form .form-group input,
.filter_form .form-group ng-select {
    font-weight: 400;
    font-size: 14px;
    /* line-height: 16px; */
    text-transform: uppercase;
    line-height: 44px;
    color: rgb(117 64 115);
    border: 1px solid rgb(255, 191, 253);
    border-radius: 5px;
    height: 45px;
}

.filter_form .form-group input::placeholder {
    color: rgb(117 64 115);
}

.filter_close {
    margin-right: 10px;
    color: rgb(255 255 255);
    background: rgb(252 137 25);
    border-radius: 2px;
    font-size: 30px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    padding: 0px;
    border: none;
}

.filter_card_list [type="radio"]:checked,
.filter_card_list [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.filter_card_list [type="radio"]:checked+label,
.filter_card_list [type="radio"]:not(:checked)+label {
    position: relative;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    color: rgb(146 39 143);
    padding-left: 30px;
    margin-bottom: 0px;
}

.filter_card_list [type="radio"]:checked+label:before,
.filter_card_list [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border: 2px solid rgb(151 64 148);
    border-radius: 100%;
    background: rgb(255, 234, 254);
}

.filter_card_list [type="radio"]:checked+label:after,
.filter_card_list [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: rgb(146, 39, 143);
    position: absolute;
    top: 6px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.filter_card_list [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.filter_card_list [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.filter_card_list {
    padding: 20px 16px;
    min-height: 210px;
}


.filter_card_list li {
    list-style-type: none;
    margin-bottom: 30px;
}

.filter_card_list li:last-child {
    margin-bottom: 0px;
}

.filter_card {
    border: 1px solid rgb(255 206 253);
    border-radius: 6px;
    margin-top: 7px;
}

.filter_card_head {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: rgb(146 39 143);
    background: hsl(300deg 100% 98%);
    border-bottom: 1px solid rgb(255 206 253);
    padding: 14px 18px;
    border-radius: 6px 6px 0px 0px;
}

.filter_btn {
    align-items: center;
    justify-content: flex-end;
    display: flex;
    margin-top: 30px;
}

.filter_btn .scheduled_btn {
    margin-right: 20px;
}

.amt_icon button {
    border: none;
    background: transparent;
}

.settlement_header {
    padding: 10px;
    background: rgb(82 73 67);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2px 2px 13px 2px;
}

.settlement_header .switch_popup_head {
    font-size: 15px;
    color: rgb(255 255 255);

}

.settlement_header .switch_close {
    background: rgb(252 137 25);

}

.settlement_input {
    padding: 0px;
}

.settlement_input input {
    margin-bottom: 15px;
    color: rgb(0, 0, 0);
}

.update_settlement_popup .modal-dialog {
    width: 375px;
}

.received_btn {
    padding: 7px 3px 6px 12px;
    color: rgb(255 255 255);
    background: rgb(252 137 25);
    box-shadow: 0px 0px 5px rgb(0 0 0 / 15%);
    border-radius: 6px;
    border: none;
}

.received_btn i {
    margin-left: 10px;
    padding: 4px;
    background: rgb(255 166 79);
    border-radius: 3px;
    width: 32px;
}

.hotel_food_type {
    margin-bottom: 20px;
    border: 1px solid rgb(133 133 133);
    padding: 8px 0px;
    border-radius: 6px;
}

.hotel_food_type .radio span {
    border: 1px solid rgb(0 0 0);
    background-color: rgb(255, 255, 255);
}

.hotel_food_type .radio span:after {
    background: rgb(82 73 67);
}

.food_type_holder li {
    margin-right: 12px;
}

.eye_tiger {
    padding-right: 0px !important;
}

.bill_details_cont {
    border: 1px solid rgb(224 224 224);
    border-radius: 5px;
}

.bill_details_head {
    background: rgb(43 38 35);
    border-radius: 5px 5px 0px 0px;
    padding: 17px;
    color: rgb(255 255 255);
}

.bill_details_cont ul {
    padding: 15px;
}

.bill_details_cont ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bill_order {
    padding-top: 15px;
    border-top: 1px dashed rgb(202 202 202);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(252 137 25);
}

.print_bill {
    float: right;
    padding: 3px 10px 3px 5px;
    background: #FC8919;
    border-radius: 3px;
    border: none;
    color: #fff;
    margin-top: 20px;
}

.print_bill span {
    margin-right: 10px;
    background: #FE9F41;
    height: 29px;
    width: 29px;
}

.fooditem_type span {
    margin-left: 10px;
}

.item_total_cont {
    border-top: 1px dashed #CACACA;
}

.item_total {
    color: #FC8919;
}

.item_price_cont {
    height: 200px;
    overflow: auto;
}

/*end */


.custpop_title {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
    margin-bottom: 18px;
}

.custpop_btn {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    background-color: rgb(252 137 25);
    border-radius: 4px;
    padding: 14px 38px;
    border: none;
    color: rgb(255, 255, 255);
}

@media (min-width: 768px) {
    .modal-dialog {
        width: none;
        margin: 30px auto;
    }
}


@media (min-width:1200px) and (max-width:1365px) {
    .bill_update {
        padding: 8px 2px;

    }

    button.roof_btn {
        padding: 8px 12px;
    }

    .bill_check {
        width: 32%;
        padding-right: 5px;
        border-right: 1px solid rgb(252, 137, 25);
    }

    .bill_text {
        margin-left: 5px;
        font-size: 12px;
        width: 34%;
    }

    .bill_input {
        width: 42%;
    }

    .bill_input input {
        width: 140px;
        height: 40px;
        padding: 6px 5px !important;
    }

    button.bill_btn {
        margin-left: 5px;
        padding: 10px 8px;
    }

    .item_variants label:before {
        content: '';
        padding: 7px;
    }

    .item_variants label {
        font-size: 13px !important;
    }

    .pickup_state {
        width: 40%;
    }

    .pickup_cont_arriving .pickup_state {
        width: 29%;
    }

    .arriving_msg {
        padding: 9px 16px;
    }

    .delivered_cont .pickup_state {
        width: 31%;
    }

    .delivered_state {
        width: 35%;
    }
}




/* .bill_details_cont {
    border: 1px solid #E0E0E0;
    border-radius: 5px;
}

.addon_lists {
    border-top: 1px solid #E2E2E2;
}

.fooditem_type span {
    margin-left: 10px;
}

.order_popup_table table {
    margin-bottom: 0px;
}

.print_bill {
    align-items: center;
    display: flex;
    float: right;
    padding: 3px 10px 3px 5px;
    background: #FC8919;
    border-radius: 3px;
    border: none;
    color: #fff;
    margin-top: 20px;
}

.print_bill span {
    line-height: 26px;
    margin-right: 10px;
    background: #FE9F41;
    height: 29px;
    width: 29px;
}

.item_name_lists th {
    padding: 10px;
}

.print_popup .modal-header {
    padding: 0px;
}

.print_close {
    border: none;
    background: transparent;
}

.popup_print_head {
    background: rgb(82 73 67);
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 0px 15px;
    color: rgb(255 255 255);
}

.print_head_text {
    margin-top: 50px;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: rgb(0 0 0);
    text-align: center;
}
.print_bill1 {
    padding: 3px 10px 3px 3px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #FC8919;
    border-radius: 3px;
    border: none;
    color: #fff;
}

.print_bill1 span {
    margin-right: 10px;
    line-height: 25px;
    background: #FE9F41;
    width: 29px;
    height: 29px;
}
.customer_copy_cont {
    text-align: center;
    margin-top: 30px;
}
.customer_copy_cont b {
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}
.customer_copy_cont span {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    margin-top: 22px;
}
.print_head_text1 {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
    text-align: center;
}
.main_print_container {
    padding: 50px 0px;
}
.print_head_text2 {
    margin-top: 6px;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
    text-align: center;
}

.print_head_text2 b {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    border-right: 1px solid #000000;
    padding-right: 20px;
}

.print_head_text2 span {
    padding-left: 20px;
}

.print_body ul {
    padding: 0px 45px;
    list-style-type: none;
    margin-top: 40px;
}

.print_table {
    padding: 0px 45px;
}

.print_time {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    padding: 10px 0px;
    border-top: 1px dashed #000000;
    border-bottom: 1px dashed #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.print_body b {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
}

.print_body ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.print_body table tr td {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    border: none;
}
.print_body{
    overflow: auto;
}
.print_bill_btn {
    padding: 10px;
    background: rgb(242 242 242);
    border-top: 1px solid rgb(210 210 210);
    display: flex;
    justify-content: flex-end;
}
.print_popup .modal-body {
    padding: 0;
} */


.print_head_text {
    margin-top: 0px !important;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: rgb(0 0 0);
    text-align: center;
}

.print_close {
    border: none;
    background: transparent;
}

.popup_print_head {
    background: rgb(82 73 67);
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 0px 15px;
    color: rgb(255 255 255);
}


.print_bill1 {
    padding: 3px 10px 3px 3px;
    display: flex;
    align-items: center;
    float: right;
    background: rgb(252, 137, 25);
    border-radius: 3px;
    border: none;
    color: rgb(255, 255, 255);
}

.print_bill1 span {
    margin-right: 10px;
    line-height: 20px;
    background: rgb(254, 159, 65);
    width: 29px;
    height: 29px;
}

.customer_copy_cont {
    text-align: center;
    margin-top: 30px;
}

.customer_copy_text {
    font-weight: 400;
    font-size: 14px;
    color: rgb(0, 0, 0);
}

.visit_text {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    margin-top: 20px;
}

.print_head_text1 {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
    text-align: center;
}

.main_print_container {
    padding: 50px 0px;
}

.print_head_text2 {
    margin-top: 6px;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
    text-align: center;
}

.print_head_text2 b {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0, 0, 0);
    border-right: 1px solid rgb(0, 0, 0);
    padding-right: 20px;
}

.print_head_text2 span {
    padding-left: 20px;
}

.print_body ul {
    padding: 0px 45px;
    list-style-type: none;
    margin-top: 40px;
}

.print_table {
    padding: 0px 45px;
}

.print_time {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    padding: 10px 0px;
    border-top: 1px dashed #000000;
    border-bottom: 1px dashed #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.print_body b {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: rgb(0 0 0);
}

.print_body ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.print_body table tr td {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    border: none;
}

.print_bill_btn {
    padding: 10px;
    background: rgb(242 242 242);
    border-top: 1px solid rgb(210 210 210);
}

/*newly added css */

.dash_main .col-sm-3 {
    padding-left: 0px;
}

.add_branch_dash li {
    margin-bottom: 20px;
}

.add_branch_dash ul li .item_status {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
}

.add_branch_dash {
    width: 28%;
    margin-right: 45px;
}

.add_branch_head {
    font-weight: 300;
    font-size: 15px;
    line-height: 22px;
    color: rgb(0 0 0);
    background: rgb(240 240 243);
    border-bottom: 1px solid #FC8919;
    border-radius: 7px 8px 0px 0px;
    padding: 15px 20px;
}

.add_branch_txt {
    margin-bottom: 15px;
}

.add_branch_dash ul {
    padding: 10px 20px;
    list-style-type: none;
}

.dash_sale_count {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash_count {
    font-weight: 300;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: rgb(0 0 0);
    padding: 20px 0px 0px 8px;
}

.dash_count span {
    color: rgb(252 137 25);
    font-weight: 400;
    font-size: 16px;
}

.dash_count_green {
    font-weight: 300;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: rgb(0 0 0);
    padding: 20px 0px 0px 8px;
}

.dash_count_green span {
    color: rgb(58, 189, 58);
    font-weight: 400;
    font-size: 16px;
}

.dash_count b {
    font-weight: 400;
    font-size: 16px;
    color: rgb(255, 83, 83);
}

.admin_dash_btn {
    position: relative;
}

.admin_dash {
    position: absolute;
    top: 58px;
    right: 0px;
    width: 175px;
    padding: 4px;
    list-style-type: none;
    background: rgb(240, 240, 243);
    box-shadow: 0px 0px 20px rgb(35 62 143 / 20%);
    border-radius: 4px;
    z-index: 1;
}

.admin_dash li.active {
    background: #FC8919;
    border-radius: 2px;
    color: #fff;
}

.admin_dash li {
    margin-bottom: 3px;
    background: rgb(255, 255, 255);
    border-radius: 2px;
    padding: 10px;
    border: none;
}

.admin_dash li a {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: rgb(43, 38, 35) !important;
}

.scan_list li:nth-child(odd) {
    width: 30% !important;
}

.scan_list {
    padding-top: 20px;
    border-right: 1px solid #F0F0F3;
    background: none !important;
}

.delivery_scan_btn button {
    padding: 2px 2px 2px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(252 137 25);
    border-radius: 4px;
    border: none;
    color: rgb(255 255 255);
}

.delivery_scan_btn span {
    margin-left: 8px;
    line-height: 30px;
    width: 34px;
    background: rgb(255 166 79);
    border-radius: 2px;
}

.running_rest_action i {
    margin-right: 0px !important;
}

.login_cred_cont {
    background: rgb(255 255 255);
    border-radius: 4px;
    padding: 13px 15px;
}

.login_cred_cont ul {
    list-style-type: none;
}

.login_cred_cont li {
    float: left;
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
    color: rgb(0, 0, 0);
    width: 60%;
}

.login_cred_cont li:nth-child(odd) {
    width: 40%;
}

.login_cred_cont li:nth-child(even) {
    border-radius: 2px;
    padding: 3px 15px;
    margin-bottom: 2px;
    background: rgb(240, 240, 243);
}

.login_cred_cont span {
    float: right;
    padding: 0px 6px;
}

.login_cred span {
    width: 28px;
    background: rgb(216, 216, 216);
    border-radius: 2px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.change_pass {
    padding: 8px 0px 8px 15px;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: rgb(255 255 255);
    background: rgb(252 137 25);
    border: 1px solid rgb(253 161 71);
    border-radius: 3px;
}

.add_branch_box {
    width: 100%;
}

.add_branch_priv {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.add_branch_menu ul {
    list-style-type: none;
}

.add_branch_menu ul li {
    display: flex;
    align-items: center;
}

.rest_upload_btn {
    display: block;
    position: relative;
    cursor: pointer;
    float: right;
}

.upload_btn {
    background: none;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    font-size: 14px;
    border: 0;
}

.upload_btn input[type="file"] {
    position: absolute;
    cursor: pointer;
    left: 10;
    top: 10;
    transform: scale(3);
    opacity: 0;
}

.qr_scan_main {
    background: #F0F0F3;
    box-shadow: -5px -5px 7px #ffffff, 5.5px 5.5px 7px rgb(174 174 192 / 40%);
    border-radius: 5px;
}

.qr_scan_cont {
    margin-bottom: 10px;
    padding: 12px;
    background: rgb(255 255 255);
    border-radius: 6px;
}

.qr_id_cont {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.qr_id_cont span {
    margin-right: 10px;
}

.qr_code_container {
    padding: 20px 10px;
}

.scanner_btns {
    margin-top: 8px;
}

.scanner_btns button {
    margin-right: 10px;
    background: rgb(245 245 245);
    border-radius: 6px;
    width: 34px;
    border: none;
    height: 34px;
}

.qr_scan_address {
    padding-left: 30px;
}

button.scan_down_btn {
    background: rgb(252 137 25);
    border-radius: 6px;
}

.scanner_img {
    width: 70%;
    background: rgb(240 240 243);
    border-radius: 4px;
    padding: 10px;
}

.qr_code_container .item_submit {
    padding: 30px;
}

.generate_qr_cont .add_item_btn {
    padding: 30px;
}

.qr_code_submit {
    float: right;
}

.qr_code_submit button {
    padding: 15px;
    width: 185px;
    background: rgb(252 137 25);
    border-radius: 4px;
    border: none;
    color: rgb(255 255 255);
}

.hotel_details_list {
    background: linear-gradient(0deg, #F0F0F3, #F0F0F3), #FFFFFF;
    border-radius: 6px;
}

.filter_date_cont {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.filter_by_date {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.filter_date_btn {
    width: 34px;
    height: 34px;
    background: rgb(252 137 25);
    border: 1px solid rgb(253 161 71);
    border-radius: 4px;
    margin-left: 10px;
}

.filter_by_date label {
    font-weight: 300;
    font-size: 13px;
    line-height: 15px;
    display: flex;
    align-items: center;
    color: rgb(0 0 0);
    width: 160px;
}

.table_content {
    overflow: auto;
    height: 200px;
}

.dinein_table_list_cont .col-sm-4 {
    width: 33%;
    padding: 0px 10px;
}

.dinein_list_holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dinein_cont {
    margin-bottom: 20px;

}

.dinein_list_top {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 5px;
}

.dinein_top_cont {

    border: 1px dashed #E4E4E4;
}

.dinein_list_holder {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dine_in_left {
    font-weight: 400;
    font-size: 25px;
    line-height: 38px;
    color: #2B2623;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}

.dine_in_left span {
    margin-right: 22px;
}

.dine_in_right span {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #FC8919;
}

.dine_in_dash {
    margin-bottom: 4px;
    background: #E7E7E7;
    border-radius: 0px;
    height: 20px;
}

.dinein_list_btm {
    background: rgb(255 255 255);

}

.dinein_total {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #2B2623;

}

.dinein_table table tr td {
    border-top: none;
}

.dinein_table {
    height: 200px;
    overflow: auto;
    padding: 10px;
}

.food_img_btn {
    background: #FC8919;
    border-radius: 2px;
    padding: 8px;
    text-align: center;
    color: rgb(255 255 255);
    margin-top: 10px;
}

.staff_container {
    background: #F0F0F3;
    box-shadow: -5px -5px 7px #FFFFFF, 5.5px 5.5px 7px rgba(174, 174, 192, 0.4);
    border-radius: 5px;
}

.staff_container .management_tab {
    margin-bottom: 0px !important;
    padding: 10px;
    display: flex;
    align-items: center;
}

/*privacy policy*/
.terms_conditions_cont .header_container {
    border-radius: 0px;
}

.terms_conditions_cont .page_container {
    background: #333;
    min-height: calc(100vh - 66px);
    padding: 20px 15px;

}

.privacy_policy_cont {
    min-height: calc(100vh - 66px);
    color: rgb(255 255 255);
    background: rgb(51 51 51);
    padding: 20px 50px;
}
.policy_head {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 10px;
}
.help_head{
    text-align: center;
    color: #fff;
}
.policy_content {
    text-align: justify;
    line-height: 28px;
    font-size: 14px;
    margin-bottom: 20px;
}

.policy_head_text {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
}

.policy_content ul {
    padding-left: 18px;
}

.policy_content ul li {
    margin-bottom: 10px;
}

.contact_container {
    padding: 60px 0px;
    display: flex;
    justify-content: center;
}

.contact_box {
    min-height: 230px;
    background: #fff;
    width: 450px;
    padding: 10px 20px;
    box-shadow: 0px 0px 10px rgb(151 151 151 / 35%);
    border-radius: 8px;
    border-bottom: 3px solid rgb(43 38 35);
}

.contact_head {
    font-family: 'Teko', sans-serif;
    color: rgba(242, 127, 12, 1);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact_cont li {
    color: rgb(0 0 0 / 76%);
    font-size: 16px;
    margin-bottom: 20px;
    list-style-type: none;
    position: relative;
    padding-left: 30px;
}

.contact_cont li::before {
    position: absolute;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    left: 0px;
    top: 2px;
    color: rgb(245 127 23);
}

/* .contact_cont li:nth-child(1):before {
    content: "\f3c5";
} */

.contact_cont li:nth-child(2):before {
    content: "\f0e0";
}
.contact_cont li:nth-child(3):before {
    content: "\f095";
}
.inner_banner {
    background-image: url(../images/login-left.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 452px;
    font-size: 55px;
    font-weight: 600;
    color: rgb(255 255 255);
    text-decoration: none;
    transition: 0.2s all ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register_container {
    background-color: #333;
    min-height: calc(100vh - 66px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 40px 0px;
}

.register_box {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
    box-shadow: 0 0 15px 0 rgb(18 131 214 / 15%);
    padding: 42px;
    float: left;
    width: 430px;
    border-bottom: 3px solid rgb(40 35 30);
}

.register_head {
    font-family: 'Teko', sans-serif;
    font-size: 22px;
    font-weight: 400 !important;
    color: rgb(38 30 24);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.register_head a {
    color: rgba(0, 65, 90, 1);
    font-size: 20px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.register_form .form-group {
    margin-bottom: 20px;
}

.register_form .form-group-last {
    margin-bottom: 10px !important;
}

.register_form .form-group label {
    float: left;
    width: 100%;
    font-family: 'Titillium Web';
    font-size: 15px;
    font-weight: 400 !important;
    color: rgb(40 34 29);
}

.register_form .form-group label span {
    color: rgb(255 0 0);
}

.register_form input,
.register_form select {
    background-color: rgba(245, 245, 245, 1);
    color: rgba(102, 102, 102, 1);
    height: 55px;
    border: none;
    outline: none;
}

.register_form select {
    border-right: 10px solid rgba(245, 245, 245, 1);
}

.register_btn {
    background-color: rgba(242, 127, 12, 1);
    border-radius: 5px;
    padding: 10px;
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    font-weight: 400 !important;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    outline: 0;
    border: none;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.mode_pop .close {
    position: absolute;
    right: 10px;
    top: 5px;
}

.mode_pop .modal-body {
    padding: 2rem 1.5rem;
}

.mode_pop {
    text-align: center;
}

.mode_pop_head {
    color: rgba(242, 127, 12, 1);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 5px;
}

.mode_pop_cont {
    color: rgb(40 35 30);
    margin-bottom: 30px;
}

.mode_pop_btn {
    background-color: rgb(40 35 30);
    color: rgb(255, 255, 255);
    border: none;
    width: 60%;
    padding: 5px;
    border-radius: 4px;
    font-family: 'Teko', sans-serif;
    font-size: 22px;
    font-weight: 400 !important;
}

.mode_pop_icon i {
    margin-bottom: 10px;
    font-size: 40px;
    color: rgb(255 193 7);
}

.mode_pop_head {
    color: rgba(242, 127, 12, 1);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 5px;
}


.mode_pop_icon i {
    margin-bottom: 10px;
    font-size: 40px;
    color: rgb(255 193 7);
}

.thank_you_image {
    text-align: center;
    color: rgb(40 167 69);
    font-size: 60px;
    margin-bottom: 20px;
}

.thank_you {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}

.change_pass_body input.form-control {
    background-color: rgba(245, 245, 245, 1);
    color: rgba(102, 102, 102, 1);
    height: 45px;
    margin-bottom: 15px;
}

.popup_update {
    background-color: rgb(252 137 25);
    border-radius: 4px;
    border: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    padding: 8px 32px;
}

button.popup_cancell {
    padding: 9px 40px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(255, 83, 83);
    border-radius: 5px;
    margin-right: 10px;
}

/*/

/*media queries */

@media (min-width: 1200px) and (max-width: 1365px) {
    .menuH_container li {
        list-style-type: none;
        margin: 3px;
        min-width: 125px;
    }

    .dinein_list .manage_item span {
        font-weight: 500;
        font-size: 10px;
        margin: 0px 6px;
    }

    .dinein_option li {
        margin-right: 12px;
    }

    .management_table tbody tr td {
        font-size: 12px;
        padding: 10px;
    }

    .management_table thead tr th {
        font-size: 12px;
        padding: 15px 7px;
    }

    .dinein_option b {
        margin-right: 6px;
    }

    .edit_permission_type span {
        float: right;
        padding: 0px 16px;
    }

    .running-restraunt-container .management_tab li {
        width: 18%;
    }

    .dash_payment_head {
        padding: 10px 5px;
    }

    .dash_payment_title {
        font-size: 12px;
    }

    .dash_filter select {
        margin-right: 2px;
    }

    .dash_card {
        padding: 20px;
    }

    .food_type_holder li {
        margin-right: 6px;
    }

    .document_top {
        padding: 20px 10px;
    }

    .hotel_food_type .radio {
        padding-left: 25px;
    }

    .personal_information li:nth-child(odd) {
        width: 35% !important;
    }

    .qr_scan_main .manage_search {
        margin: 0px 10px;
    }

    .category_title {
        font-size: 13px;
    }

    button.save_btn {
        padding: 15px 15px;
    }

    .variant_title {
        width: 40%;
    }

    .variant_box {
        padding: 10px;
    }

    .variant_box .item_cont .form-group select {
        padding: 12px 8px;
    }

    .crust_group_cont {
        padding: 10px 6px;
        background: rgb(244, 244, 244);
        border-radius: 4px;
    }

    .crust_text {
        font-size: 11px;
    }

    .show_addon {
        font-size: 11px;
    }

    .personal_information li:nth-child(odd) {
        width: 22% !important;
    }

    .update_settlement {
        margin-top: 5px;
        padding: 2px 2px 2px 2px;
    }

    .summary_text1 {
        padding: 0px 10px 12px 10px;
        font-weight: 300;
        font-size: 13px;
    }

    .personal_details {
        padding-left: 10px;
    }

}