@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.woff2') format('woff2'),
        url('../fonts/DMSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Medium.woff2') format('woff2'),
        url('../fonts/DMSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Bold.woff2') format('woff2'),
        url('../fonts/DMSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
:root{
	--primary:#1E40AF;
    --light-primary:#E3EAFF;
	--secondary:#4B5B73;
	--light:#F4F6FB;
	--dark:#1E293B;
    --light2:var(--white);
    --white:#fff;
    --danger: #DC3545;
    --success: #19a263;
    --warning:#FFC700;
    --info:#04aed0;
    --muted:#4B5B73;
    --border-color:#EBEEF2;
    --bs-border-color:#EBEEF2;
    --page-content-space:20px;
    --sidebar-width:230px;
    --body-font-size:13px;
    --field-bg:#F4F6FB;
    --fiekd-placeholder:#767F8F;
    --field-border-focus:#dee2e8;
    --field-font-size:13px;
}
body{
    font-family: 'DM Sans', sans-serif;
    background-color:var(--light);
    padding-left: 64px;
    padding-top: 101px;
    font-size: var(--body-font-size);
    color:var(--muted);
    font-weight: 500;
    transition:all 0.3s;;
    overflow-x: hidden;
}
html {
    font-size: var(--body-font-size);
}
::selection{
    color:var(--white);
    background:var(--primary);
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
img, svg {
    width: auto;
    max-width: 100%;
    height: auto;
}
*, ::after, ::before {
    box-sizing: border-box;
    outline: none;
}
html button{
    box-shadow: none !important;
}
p:last-child{
    margin-bottom: 0;
}
html a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}
html a:hover{
    color: var(--dark) ;
    text-decoration: none;
}
.text-primary{
    color: var(--primary) !important;
}
.border-primary{
    border-color: var(--primary) !important;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-weight: 600;
}
.btn, .custom-btn{
    --cs-btn-radius:6px;
    --cs-btn-font-size:14px;
    --cs-btn-line-height:36px;
    --cs-btn-min-width:120px;
}
.btn-rounded{
    --cs-btn-radius:50px;
}
.btn-primary,
.custom-btn-primary,
.custom-btn {
    --cs-btn-color: #fff;
    --cs-btn-bg-color: var(--primary);
    --cs-btn-border-color: var(--primary);
    --cs-btn-shadow:0px 4px 14px rgba(30, 64, 175, 0.4);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--dark);
    --cs-btn-hover-border-color: var(--dark);
    --cs-btn-hover-shadow:0px 4px 14px rgba(0, 0, 0, 0.4);
}
.btn-dark,
.custom-btn-dark {
    --cs-btn-color: #fff;
    --cs-btn-bg-color: var(--dark);
    --cs-btn-border-color: var(--dark);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--primary);
    --cs-btn-hover-border-color: var(--primary);
}
.btn-light,
.custom-btn-light {
    --cs-btn-color: var(--muted);
    --cs-btn-bg-color: var(--light);
    --cs-btn-border-color: var(--light);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--primary);
    --cs-btn-hover-border-color: var(--primary);
}
.btn-link,
.custom-btn-link {
    --cs-btn-color: var(--dark);
    --cs-btn-bg-color: transparent;
    --cs-btn-border-color:transparent;
    --cs-btn-hover-color: var(--muted);
    --cs-btn-hover-bg-color:transparent;
    --cs-btn-hover-border-color: transparent;
}
.btn-white,
.custom-btn-white {
    --cs-btn-color: var(--dark);
    --cs-btn-bg-color: var(--white);
    --cs-btn-border-color: var(--white);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--primary);
    --cs-btn-hover-border-color: var(--primary);
}
.btn-light-primary {
    --cs-btn-color: var(--primary);
    --cs-btn-bg-color: var(--light-primary);
    --cs-btn-border-color: var(--light-primary);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--primary);
    --cs-btn-hover-border-color: var(--primary);
}
.btn-muted,
.custom-btn-muted {
    --cs-btn-color: #fff;
    --cs-btn-bg-color: var(--muted);
    --cs-btn-border-color: var(--muted);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--dark);
    --cs-btn-hover-border-color: var(--dark);
}
.btn.btn-sm {
    --cs-btn-font-size: var(--body-font-size);
    --cs-btn-line-height: 32px;
    --cs-btn-min-width: 80px;
}
.btn.btn-xs {
    --cs-btn-font-size: 12px;
    --cs-btn-line-height: 28px;
    --cs-btn-min-width: 0px;
    padding-left: 10px;
    padding-right: 10px;
}
.btn.btn-lg {
    --cs-btn-font-size:16px;
    --cs-btn-line-height:44px;
    --cs-btn-min-width:170px;
}
.btn-success,
.custom-btn-success {
    --cs-btn-color: #fff;
    --cs-btn-bg-color: var(--success);
    --cs-btn-border-color: var(--success);
    --cs-btn-shadow:0px 4px 14px rgba(50, 184, 111, 0.4);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--dark);
    --cs-btn-hover-border-color: var(--dark);
    --cs-btn-hover-shadow:0px 4px 14px rgba(0, 0, 0, 0.4);
}
.btn-light-success {
    --cs-btn-color:var(--success);
    --cs-btn-bg-color: #dbf0e6;
    --cs-btn-border-color: #dbf0e6;
    --cs-btn-shadow:0px 4px 14px rgba(50, 184, 111, 0.4);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--dark);
    --cs-btn-hover-border-color: var(--dark);
    --cs-btn-hover-shadow:0px 4px 14px rgba(0, 0, 0, 0.4);
}
.btn-danger,
.custom-btn-danger {
    --cs-btn-color: #fff;
    --cs-btn-bg-color: var(--danger);
    --cs-btn-border-color: var(--danger);
    --cs-btn-shadow:0px 4px 14px rgba(217, 33, 78, 0.4);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--dark);
    --cs-btn-hover-border-color: var(--dark);
    --cs-btn-hover-shadow:0px 4px 14px rgba(0, 0, 0, 0.4);
}
.btn-light-danger {
    --cs-btn-color:var(--danger);
    --cs-btn-bg-color: #f5e9eb;
    --cs-btn-border-color: #f5e9eb;
    --cs-btn-shadow:0px 4px 14px rgba(217, 33, 78, 0.4);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--dark);
    --cs-btn-hover-border-color: var(--dark);
    --cs-btn-hover-shadow:0px 4px 14px rgba(0, 0, 0, 0.4);
}
.btn-warning,
.custom-btn-warning {
    --cs-btn-color:#fff;
    --cs-btn-bg-color: var(--warning);
    --cs-btn-border-color: var(--warning);
    --cs-btn-shadow: 0px 4px 14px rgba(255, 199, 0, 0.4);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--dark);
    --cs-btn-hover-border-color: var(--dark);
    --cs-btn-hover-shadow:0px 4px 14px rgba(0, 0, 0, 0.4);
}
.btn-light-warning {
    --cs-btn-color:#7e6201;
    --cs-btn-bg-color: #fbefc3;
    --cs-btn-border-color: #fbefc3;
    --cs-btn-shadow: 0px 4px 14px rgba(255, 199, 0, 0.4);
    --cs-btn-hover-color: var(--white);
    --cs-btn-hover-bg-color: var(--dark);
    --cs-btn-hover-border-color: var(--dark);
    --cs-btn-hover-shadow:0px 4px 14px rgba(0, 0, 0, 0.4);
}
.btn-text-primary {
    --cs-btn-color: var(--primary);
    --cs-btn-hover-color: var(--white);
}




html .btn,
.custom-btn{
    font-size: var(--cs-btn-font-size);
    line-height: var(--cs-btn-line-height);
    padding: 0 15px;
    border-radius: var(--cs-btn-radius);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--cs-btn-min-width);
    box-shadow: 0 0 0 0 transparent !important;
    border:1px solid var(--cs-btn-border-color) !important;
    color:var(--cs-btn-color) !important;
    background-color:var(--cs-btn-bg-color) !important;
    transition: all 0.3s;
    text-decoration: none;
}
html .btn:hover,
html .btn.active,
html .btn-hover-wrap:hover .btn,
.custom-btn:hover{
    border-color:var(--cs-btn-hover-border-color) !important;
    color:var(--cs-btn-hover-color) !important;
    background-color:var(--cs-btn-hover-bg-color) !important;
}
html .btn-sm {
    padding-left: 15px;
    padding-right: 15px;
}
html .btn.btn-icon {
    width: calc(var(--cs-btn-line-height) + 2px);
    min-width: calc(var(--cs-btn-line-height) + 2px);
    height: calc(var(--cs-btn-line-height) + 2px);
    padding: 0;
    --cs-btn-font-size: 15px;
}
html .btn-shadow {
    box-shadow: var(--cs-btn-shadow) !important;
}
html .btn-shadow:hover {
    box-shadow: var(--cs-btn-hover-shadow) !important;
}
.btn i,
.btn svg {
    margin-right: 7px;
}
.btn i {
    font-size: 85%;
}
.btn-icon i,
.btn-icon svg{
    margin: 0;
}
.btn.d-block{
    width: 100%;
}
html .btn-info{
    background-color: var(--info) !important;
    color:var(--white) !important;
}
html .btn-info:hover{
    background-color: var(--dark) !important;
    color:var(--white) !important;
}
html .bg-primary{
    background-color: var(--primary) !important;
}
html .bg-danger{
    background-color: var(--danger) !important;
}
html .bg-success{
    background-color: var(--success) !important;
}
html .bg-warning{
    background-color: var(--warning) !important;
}
.menu-sidebar {
    background: var(--white);
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 64px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition:all 0.3s;
    border-right: 1px solid var(--border-color);
}
.sidebar-collapsein .menu-sidebar {
    width: var(--sidebar-width);
}
.menu-sidebar .sidebar-inner-content {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
}
.menu-sidebar .sidebar-footer {
    padding-bottom: 23px;
    margin-top: 20px;
}
.sidebar-collapsein .sidebar-logo {
    margin-bottom: 10px;
}
.sidebar-logo {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:10px;
}
.sidebar-logo a {
    display: block;
}
.sidebar-logo .img-full {
    display: none;
}
.sidebar-logo img {
    display: block;
}
.sidebar-logo .img-icon {
    margin: 0 auto;
    max-width: 50px;
    display: block;
}
ul.menu-navigation {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.menu-navigation > li {
    margin-bottom: 10px;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}
ul.menu-navigation > li:last-child{
    margin-bottom:0;
}
ul.menu-navigation > li > a {
    color: var(--muted);
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 12px;
    line-height: 30px;
    white-space: nowrap;
    font-size: 15px;
    min-height: 40px;
    border-radius: 10px;
}
ul.menu-navigation > li > a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 15px;
    height: 10px;
    width: 8px;
    background: currentColor;
    border-radius: 0 50px 50px 0;
    transform: translateX(-120%);
    transition: all 0.3s;
    visibility: hidden;
}
ul.menu-navigation > li > a[aria-expanded="true"]:before,
ul.menu-navigation > li:hover > a:before,
ul.menu-navigation > li.active > a:before {
    transform: translateX(0%);
}
ul.menu-navigation > li > a[aria-expanded="true"],
ul.menu-navigation > li:hover > a, 
ul.menu-navigation > li.active > a {
    color: var(--primary);
    background: var(--light-primary);
}
ul.menu-navigation > li > a .icon {
    width: 20px;
    min-width:20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
}
ul.menu-navigation > li > a .icon svg {
    display: block;
}
ul.menu-navigation > li > a > .text {
    margin-left: 10px;
    display: none;
    flex-grow: 1;
}
ul.menu-navigation > li > a > .text:first-child{
    margin-left:0;
}
.sidebar-collapsein ul.menu-navigation > li > a > .text {
    display: block;
}
.sidebar-toggle {
    cursor: pointer;
    position: absolute;
    left: 68px;
    margin-left:-18px;
    bottom: 25px;
    width: 36px;
    height: 36px;
    color:var(--primary);
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.1);
    padding:0 10px;
}
.sidebar-toggle:hover{
    color:var(--dark);
}
.sidebar-collapsein .sidebar-toggle {
    left: var(--sidebar-width);
}
.sidebar-toggle svg {
    transform: rotate(180deg);
}
.sidebar-collapsein .sidebar-toggle svg {
    transform: rotate(0deg);
}
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 54px;
    padding: 8px var(--page-content-space) 8px 84px;
    z-index: 99;
    transition: all 0.3s;
    background: var(--white);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.03);
}
body.sidebar-collapsein header {
    padding-left: calc(var(--sidebar-width) + var(--page-content-space));
}
.img-stretch{
    width:100%;
    height:100%;
    object-fit: cover;
    display: block;
}
.content{
    padding:var(--page-content-space) var(--page-content-space);
    transition: all 0.3s;
}
body.sidebar-collapsein .content {
    transform: translatex(calc(var(--sidebar-width) - 65px));
}
.navbar-toggle {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
    margin-left: auto;
    cursor: pointer;
}
.navbar-toggle span {
    width: 26px;
    height: 2px;
    background: var(--muted);
    display: block;
    position: absolute;
    left: 2px;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    margin: auto 0;
    transition: all 0.3s;
}
.navbar-toggle span:nth-child(1) {
    top: -13px;
    width: 19px;
}
.navbar-toggle span:nth-child(3) {
    bottom: -13px;
    width: 14px;
}
.navbar-toggle:hover span:nth-child(1) ,
.navbar-toggle:hover span:nth-child(3) {
    width: 26px;
}
.sidebar-collapsein .navbar-toggle span:nth-child(1) {
    top: 0;
    width: 26px;
    transform:rotate(45deg);
}
.sidebar-collapsein .navbar-toggle span:nth-child(2) {
    width: 0;
}
.sidebar-collapsein .navbar-toggle span:nth-child(3) {
    bottom: 0;
    width: 26px;
    transform:rotate(-45deg);
}
.header-profile-name {
    position: relative;
}
.header-profile-name:hover .submenu {
    visibility: visible;
    opacity: 1;
    margin-top:0;
}
.submenu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    margin-top:20px;
    min-width: 148px;
    right: 0;
    transition: all 0.2s;
    padding: 10px;
    background: var(--light2);
    border-radius: 6px;
    z-index: 9;
    box-shadow: 0 5px var(--body-font-size) 0 rgba(0,0,0,0.05);
}
ul.inner-submenu {
    margin: 0;
    padding:0;
    list-style: none;
    font-size: 14px;
}
ul.inner-submenu > li > a {
    display: block;
    border-radius: 4px;
    padding: 5px 12px;
    color:var(--dark);
    font-size: var(--body-font-size);
}
ul.inner-submenu > li > a:hover {
    background: var(--primary);
    color: var(--light2);
}
.submenu hr {
    border-color: var(--luted);
    margin: 5px 0;
}
html .card {
    background: var(--white);
    border: 1px solid rgba(225, 232, 239, 0.8);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    padding: 24px;
    margin:0 0 24px;
}
html .card h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.form-field {
    margin: 0 0 18px;
    line-height: 120%;
}
.form-field label {
    font-size: var(--body-font-size);
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 3px;
    display: inline-block;
    vertical-align: top;
    line-height:18px;
}
.form-field label em{
    color:red;
    font-style: normal;
}
.form-field label > button {
    font-size: var(--body-font-size);
    font-weight: 500;
    text-decoration: underline;
    background: transparent;
    border: 0;
    color: var(--primary);
}
html .form-control,
html .form-select {
    background-color: var(--field-bg);
    border: 1px solid var(--field-bg);
    border-radius: 6px;
    padding: 0 15px;
    height: 38px;
    font-size: var(--field-font-size);
    box-shadow: 0 0 0 transparent !important;
    color:var(--dark);
    transition:all 0.2s;
    font-family: inherit;
    font-weight: normal;
}
html select.form-control{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right:28px;
}
html textarea.form-control{
    height:80px;
    resize: none;
    padding-top:10px;
    display: block;
}
html .form-control[type=file] {
    line-height: 38px;
    padding-left:8px;
}
html .form-control-solid,
html .form-select-solid{
    background-color: var(--field-bg);
    border-color: var(--field-bg);
}
html .form-control:hover,
html .form-control:focus,
html .form-select:hover,
html .form-select:focus {
    border-color:var(--field-border-focus);
    background-color: var(--field-bg);
}
html .form-control.form-control-solid:hover,
html .form-control.form-control-solid:focus,
html .form-select.form-select-solid:hover,
html .form-select.form-select-solid:focus {
    background-color: var(--field-bg);
}
html .form-control::-webkit-input-placeholder { /* Edge */
    color: var(--fiekd-placeholder);
}
html .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--fiekd-placeholder);
}
html .form-control::placeholder {
    color: var(--fiekd-placeholder);
}
.select2-container {
    display: block;
    z-index: 9991;
}
html .select2.select2-container {
    width: 100% !important;
    z-index: 1;
}
.select2-container--default .select2-selection--single {
    background-color: var(--field-bg);
    border: 1px solid var(--field-bg);
    border-radius: 6px;
    padding: 0 35px 0 15px;
    height: 38px;
    font-size: var(--body-font-size);
    box-shadow: 0 0 0 transparent !important;
    color: var(--dark);
    transition: all 0.2s;
    display: flex;
    align-items: center;
}
.field-icon .select2-container--default .select2-selection--single{
    padding-left:38px;
}
html .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 0;
}
html .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 20px;
    height: 20px;
    right: 9px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
html .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
html .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    display: block;
    transform: rotate(45deg);
    transition:all 0.2s;
    color:var(--muted);
    margin-top:-3px;
}
html .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:before{
    transform: rotate(-135deg);
    margin-top:0;
}
html .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary);
    color: white;
}
html .select2-container--default .select2-results__option--selected {
    background-color: var(--light);
}
html .select2-dropdown{
    border-color:rgba(0,0,0,0.1);
}
html .select2-container--default .select2-search--dropdown .select2-search__field {
    background: var(--light);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 0 10px;
    height: 32px;
    font-size: var(--body-font-size);
}
html .select2-results__option {
    font-size: var(--body-font-size);
    padding: 6px 10px;
}
.select2-results__option.select2-results__message {
    text-align: center;
    color: var(--muted);
}
.form-select-solid ~ .select2-container--default .select2-selection--single {
    background: var(--light);
    border-color: var(--light);
}
.form-select-sm ~ .select2-container--default .select2-selection--single {
    height: 34px;
    font-size: var(--body-font-size);
}
html .select2-container--default .select2-selection--single .select2-selection__rendered {
    color:var(--muted);
}
html .form-switch {
    margin-bottom: 0;
}
html .form-switch .form-check-input {
    background-color: var(--light);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 0 0 transparent !important;
    cursor: pointer;
}
html .form-switch .form-check-input:focus {
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}
html .form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
html .form-switch .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
html .form-switch .form-check-label {
    margin-bottom: 0;
    cursor: pointer;
}
.form-switch.form-switch-2 {
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.form-switch.form-switch-2 .form-check-input {
    margin: 0 10px;
}
.form-switch.form-switch-2 .form-check-input + .form-check-label {
    order: -1;
    color: var(--primary);
}
.form-switch.form-switch-2 .form-check-input:checked + .form-check-label,
.form-switch.form-switch-2 .form-check-input + .form-check-label + .form-check-label{
    color: var(--muted);
}
.form-switch.form-switch-2 .form-check-input:checked + .form-check-label + .form-check-label{
    color: var(--primary);
}
form:last-child{
    margin-bottom:0;
}
.image-upload {
    background: var(--white);
    border: 1px solid #F3F6F9;
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    width: 160px;
    min-height: 160px;
    margin: 0 auto 15px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-edit-btn {
    background: var(--white);
    border: 1px solid #F3F6F9;
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -10px;
    right: -10px;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.3s;
    font-size: var(--body-font-size);
}
.image-edit-btn:hover{
    color:var(--dark);
}
html .text-muted {
    color: #A1A5B7 !important;
}
.text-small {
    font-size: 13px;
    font-weight: normal;
}
html .form-check-input {
    width: 18px;
    height: 18px;
    top: 0;
    margin: 0;
    box-shadow: 0 0 0 transparent !important;
    background-color: var(--light);
    border: 1px solid rgba(0,0,0,0.1) !important;
}
html .form-check .form-check-input {
    margin-left: -24px;
}
html .form-check {
    min-height: 18px;
    padding-left: 25px;
    margin-bottom: 4px;
}
html .form-check label {
    margin-bottom: 0;
}
html .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary)!important;
}
html .form-switch .form-check-input{
    width: 36px;
    height: 18px;
}
label.size-wrap {
    cursor: pointer;
    display: block;
}
label.size-wrap input {
    display: none;
}
label.size-wrap span {
    color: var(--muted);
    background: #F7F8FC;
    border: 1px solid #E1E8EF;
    border-radius: 6px;
    padding: 10px 0;
    display: block;
    text-align: center;
    font-size: 12px;
    transition: all 0.4s;
}
body.dark-active label.size-wrap span{
    border-color:var(--light);
}
label.size-wrap span b { 
    display: block; 
    font-size: 16px;
    font-weight: 600;
}
label.size-wrap input:checked ~ span,
label.size-wrap input:hover ~ span {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--light2);
} 
body.dark-active label.size-wrap input:checked ~ span,
body.dark-active label.size-wrap input:hover ~ span{
    border-color: #fff;
    background: #fff;
    color: var(--primary);
}
.min-width-0{
    min-width: 0 !important;
}
.size-overflow{
    max-height:140px;
    overflow-y: auto;
    overflow-x: hidden;
}
.form-field textarea.form-control {
    resize: none;
    height: 85px;
    padding: 10px 15px;
}
.form-field textarea:last-child {
    margin-bottom: 0;
}
html .table-striped > tbody > tr:nth-of-type(odd) > *{
    --bs-table-accent-bg:var(--white);
}
html .table-striped > tbody > tr:nth-of-type(even) > * {
    --bs-table-accent-bg: #f9faff;
}
html .table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: #fafbff;
}
html .table { 
    margin: 0;
    --bs-border-color:#e4e7eb;
}
html .table thead.bg-light {
    background: var(--light) !important; 
}
html .table thead {  
    border-radius: 5px 5px 0 0;
}
html .table thead th {
    color: var(--dark);
    font-size: var(--body-font-size);
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0;
    padding: 10px 12px;
    white-space: nowrap;
}
html .table tbody td,
html .table tbody th {
    font-size: var(--body-font-size);
    color: var(--muted);
    letter-spacing: 0;
    padding: 6px 12px;
    vertical-align: middle;
    height: 40px;
    font-weight: 500;
}
html .table.table-borderless thead th {
    border-bottom: 1px solid var(--bs-border-color);
}
html .form-control.form-control-sm, 
html .form-select.form-select-sm  {
    height: 36px;
    font-size: var(--body-font-size);
}
html .form-control.form-control-lg, 
html .form-select.form-select-lg {
    height: 46px;
    font-size: 15px;
}
html .modal-footer {
    padding: 0 25px 15px;
    border: 0;
}
html .modal-header {
    padding: 15px 25px;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 20px 25px;
}
html .modal-header h3,
html .modal-header h5 {
    font-size: 17px;
    margin-bottom: 0;
}
html .modal-header .btn-close {
    opacity: 1;
    transition:all 0.3s;
}
html .modal-header .btn-close:hover{
    transform:scale(0.9);
}
ul.store-items {
    list-style: none;
    padding: 0;
    margin: 0;
}
.store-items > li > a {
    padding: 10px;
    display: flex;
    border-radius: 10px;
    align-items: center;
    color: var(--dark);
}
.store-items > li > a:hover {
    background: var(--light);
    box-shadow: 0px 4px 5px 0 rgba(0,0,0,0.05);
}
.store-items > li > a .icon {
    border: 1px solid #eee;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    min-width: 50px;
    overflow: hidden;
    background: var(--white);
}
.store-items > li > a .icon img{
    max-height: 100%;
}
.store-items > li > a .text {
    flex-grow: 1;
}
.store-items h4 {
    font-size: 16px;
    margin: 0 0 4px;
    font-weight: 500;
}
.store-items h4 small {
    color: var(--muted);
    font-weight: normal;
    font-size: 80%;
}
.status_open_close {
    font-size: 12px;
    font-weight: normal;
}
.status_open_close span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
    margin: 7px 5px 0 0;
    background: currentColor;
}
.status-open {
    color: #00AE26;
}
.status-close {
    color: #F50000;
}
.field-icon {
    position: relative;
}
.field-icon .icon {
    width: 38px;
    height: 38px;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #767F8F;
    z-index: 2;
    pointer-events: none;
}
html .field-icon .form-control,
html .field-icon .form-select {
    padding-left: 38px;
}
.field-icon .icon svg {
    max-width: 20px;
    max-height: 20px;
}
.field-icon.field-icon-end .icon {
    left: auto;
    right: 0;
}
html .field-icon.field-icon-end .form-control,
html .field-icon.field-icon-end .form-select {
    padding-left: 15px;
    padding-right: 38px;
}
.field-icon .form-control-sm ~ .icon {
    width: 38px;
    height: 36px;
    font-size: var(--body-font-size);
}
html .field-icon .form-control.form-control-sm, 
html .field-icon .form-select.form-select-sm {
    padding-left: 34px;
}
.store-modal .modal-dialog {
    max-width: 400px;
}
.store-items-wrap {
    max-height:50vh;
    overflow: auto;
}
html .simplebar-scrollbar:before {
    background: var(--secondary);
}
.form-field .input-group textarea.form-control {
    resize: none;
    height: 85px;
    padding: 10px 15px 10px 45px;
}
ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
ul.pagination .page-item {
    margin-right: 6px;
} 
ul.pagination .page-item .page-link {
    border: 0;
    color: var(--muted) !important;
    background-color: transparent !important;
    font-weight: 500;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: var(--body-font-size);
    box-shadow: 0 0 0 transparent !important;
}
ul.pagination li .page-link:hover {
    color: var(--primary) !important;
    background: var(--light-primary) !important;
}
ul.pagination li.active .page-link{
    color: var(--dark) !important; 
    background: var(--white) !important;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.02) !important;
}
html .tooltip {
    --bs-tooltip-bg: var(--white);
    --bs-tooltip-color:var(--dark);
    --bs-tooltip-opacity:1;
}
html .tooltip .tooltip-inner{
    box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
    background:var(--white);
    font-weight: 500;
    font-size: var(--body-font-size);
    padding:5px 8px;
  }
.cashier-dropdown-wrap{
    width: 150px;
}
.header-search-field{
    width: 250px;
}
.page-heading{
    margin-bottom:10px;
}
.page-heading h2 {
    font-size: 22px;
    margin: 0;
}
.page-heading .row {
    --bs-gutter-x:10px;
}
html .badge {
    font-size: 12px;
    padding: 6px 10px;
    font-weight: 600;
}
html .text-success {
    color: #198754 !important;
}
html .text-danger {
    color: #DC3545!important;
}
html .text-warning {
    color: #FF7A00!important;
}


.badge-success {
    background:  rgba(25, 135, 84, 0.1);
    color: #198754;
}
.badge-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #DC3545;
}
.badge-dark {
    color: var(--dark);
    background: var(--light);
}
.badge-light {
    color: #888;
    background: var(--white);
}
.badge-primary {
    background:rgba(30, 64, 175,0.1);
    color:#1e40af;
}
body.dark-active .badge-primary{
    color: #fff;
    background: var(--light);
}
.badge-secondary {
    background: rgba(75, 91, 115,0.1);
    color:#4b5b73;
}
.badge-info {
    background: rgba(13, 202, 240,0.1);
    color:#04aed0;
}
.badge-warning {
    color: #000000;
    background-color:rgb(255 193 7 / 52%);
}


.filter-item-field {
    display: flex;
    align-items: center;
}
.filter-item-field label {
    font-weight: 500;
    margin-right: 5px;
    font-size: var(--body-font-size);
    color:var(--muted);
}
html .dropdown-menu {
    --bs-dropdown-border-color: #ededed;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.1);
    border-radius: 6px;
    --bs-dropdown-item-padding-y:8px;
    --bs-dropdown-link-active-bg:var(--primary);
    --bs-dropdown-link-hover-bg:var(--light);
}
b, strong {
    font-weight: 600;
}
.table-thumbnail {
    width: 34px;
    border-radius: 50%;
    overflow: hidden;
    height: 34px;
}
.table-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dropdown-toggle.arrow-none::after{
    display: none;
}
.notification-dropdown{
    padding:18px;
    width: 400px;
}
.notification-items .item {
    padding: 8px 10px 8px 65px;
    background: #f9fbff;
    border-radius: 10px;
    position: relative;
    margin: 0 0 6px;
    border: 1px solid var(--light);
    min-height: 64px;
}
.notification-items .item.readed {
    background:transparent;
    border-color:transparent;
}
.notification-items .item .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    margin: 12px;
    font-size: 14px;
}
.notification-items .item h5 {
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 700;
}
.notification-items .item h5 a{
    color:var(--dark);
}
.notification-items .item h5 a:hover{
    color:var(--primary);
}
ul.header-icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    padding-right:20px;
}
ul.header-icon-list > li + li {
    margin-left: 7px;
}
.header-profile-name .btn {
    padding-left: 5px;
    min-width: 0;
    min-height: 38px;
}
.header-profile-name .btn .icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color:var(--white);
}
.header-profile-name .btn .icon svg {
    margin:0;
}
.notification-status-dot {
    position: absolute;
    right: 0;
    top: 0;
    width: 7px;
    height: 7px;
    display: block;
    margin: 9px;
    border-radius: 50%;
}
.header-nav-wrap {
    border-top: 1px solid var(--border-color);
    margin-top: 6px;
    padding-top: 6px;
}
.header-nav-wrap .row{
    flex-wrap: nowrap;
}
.header-nav-wrap .navwrap {
    max-width:calc(100vw - 225px);
    overflow-x: auto;
}
html .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    top: 6px;
    height: 4px;
}
.header-back-link {
    padding-right: 16px;
    position: relative;
}
.header-back-link:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 26px;
    background: var(--border-color);
    margin: auto;
}
header nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
header nav > ul > li + li {
    margin-left:35px;
}
header nav > ul > li > a {
    font-size: 14px;
    color: var(--muted);
    display: inline-flex;
    vertical-align: top;
    line-height: 34px;
    white-space: nowrap;
}
header nav > ul > li.active > a,
header nav > ul > li > a:hover {
    color: var(--primary);
}
header nav > ul > li.active > a{
    font-weight: 600;
}
html .text-dark {
    color: var(--dark) !important;
}
.table.table-list-data {
    border-spacing: 0  5px;
    border-collapse: separate;
    margin-top: -5px;
}
.table.table-list-data tbody td {
    background: var(--white);
    border: 0;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 01.5%);
}
.table.table-list-data.table-hover tbody tr:hover td{
    background: #F9FAFF;
    color:var(--muted);
}
.table.table-list-data thead th{
    border:0;
    background: rgba(20, 7, 34, 0.02);
    padding-top:15px;
    padding-bottom: 15px;
}
.table.table-list-data thead th:first-child,
.table.table-list-data tbody td:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius:6px;
}
.table.table-list-data thead th:last-child,
.table.table-list-data tbody td:last-child {
    border-top-right-radius:6px;
    border-bottom-right-radius:6px;
}
.data-footer {
    margin-top: 8px;
}
html .form-control.form-control-shadow,
.form-select-shadow ~ .select2-container--default .select2-selection--single {
    border: 0;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 2%) !important;
}
.page-heading-search-field {
    min-width: 230px;
}
html .dropdown-item {
    font-weight: 500;
    color: var(--muted);
}
.field-invalid {
    border-color: #DC3545 !important;
}
.field-msg {
    display: inline-block;
    vertical-align: top;
    margin-top: 4px;
    font-size: 13px;
    line-height: 120%;
}
.field-msg-danger {
    color: #DC3545;
}

.sort-drag-list {
    display: flex;
    flex-wrap: wrap;
}
.sort-drag-list .item {
    margin: 0 8px 8px 0;
}
.sort-drag-list .item .sort-drag-box {
    background: var(--light-primary);
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 6px;
    transition: all 00.2s;
    cursor: move;
    color:var(--primary);
}
.sort-drag-list .item .sort-drag-box:hover {
    color: var(--white);
    background: var(--muted);
}



















/*Dark Theme*/
body.dark-active {
    --primary:var(--white);
    --muted:#A7B7D0;
    --light: #232D45;
    --dark:#A7B7D0;
    --white:#1B253B;
    --border-color:#27344F;
    --light-primary:var(--white);
}
.dark-active .badge-success {
    background: #198754;
    color: #fff;
}
.dark-active .badge-danger {
    background:#DC3545;
    color: #fff;
}



/*Login Page*/
.login-page{
    background: url(../images/login-bg.jpg) no-repeat center center;
    background-size: cover;
    padding:0 0 50px;
    position: relative;
}
.login-page-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 25px;
    min-height: calc(100vh - 50px);
}
.login-logo {
    /* position: absolute; */
    left: 0;
    top: 0;
    margin: 30px;
}
.login-logo img {
    max-height: 50px;
}
.login-page .copyright-login{
    position:absolute;
}
.copyright-login {
    position: relative;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 20px;
    text-align: center;
}
.card.login-card {
    width: 450px;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 16px 0 rgb(0 0 0 / 3%);
    margin: 0;
    font-size: 14px;
    max-width:100%;
}
.login-page-wrap label {
    font-size: 14px;
}
.login-page-wrap h2 {
    text-align: center;
    margin: 0 0 25px;
    font-size: 34px;
    color:var(--dark);
}
.filter-dropdown .dropdown-menu {
    padding: 20px;
    min-width: 350px;
}
.card-strash .card {
    min-height: 100%;
    margin-bottom: 0;
}
.row.card-strash>* {
    margin-bottom: 24px;
}
label + .form-switch.form-switch-2 {
    margin-top: 8px;
}
.size-n-value-wrap{
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
}

ul.size-n-value {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 -6px;
    padding: 0;
}
ul.size-n-value li {
    width: 16.66%;
    margin-bottom: 12px;
    padding: 0 6px;
}
ul.size-n-value.size-n-value-combo li span {
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    font-size: 18px;
}
ul.size-n-value.size-n-value-combo li span b{
    font-size: 20px;
}
ul.size-n-value.size-n-value-combo li {
    width: 12%;
}
label.size-wrap input:checked ~ span, 
label.size-wrap input:hover ~ span {
    background-color: var(--primary);
}
label.size-wrap {
    cursor: pointer;
    display: block;
}
label.size-wrap input {
    display: none;
}
ul.size-n-value.size-n-value-user li{
    width: 25%;
    height: 50px;
    margin-bottom: 0;
}
ul.size-n-value.size-n-value-user li span {
    font-size: 20px;
}
.btn.btn-radius {
    --cs-btn-radius: 10px;
}
.image-upload {
    width: 130px;
    min-height: 130px;
    margin: 0 auto 10px;
}
.data-view-box {
    background: var(--light);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
}
.data-view-box .item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
    margin: 0 0 15px;
    color: var(--muted);
    font-weight: normal;
}
.data-view-box .item b {
    display: flex;
    flex-grow: 1;
    align-items: center;
    font-weight: 500;
}
.data-view-box .item ul li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(45deg);
}
.data-view-box .item b:after {
    content: "";
    border-bottom: 1.5px dashed #ddd;
    flex-grow: 1;
    margin: 0 10px;
}
.data-view-box .item ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
}
.data-view-box .item ul {
    list-style: none;
    width: 100%;
    padding: 0 0 0 10px;
    margin: 10px 0 0;
}
.data-view-box .item:last-child {
    margin-bottom: 0;
}
.data-view-box.data-view-box-sm {
    padding: 10px 15px;
}
.card-up-title h4 {
    top: -9px;
    background: var(--light2);
    padding: 0 8px;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
}
.p-view-head h1{
    font-size: 26px;
    color: var(--dark);
    font-weight: 700;
}
.p-view-head h5 {
    font-size: 15px;
    margin: 0 0 2px;
    font-weight: 500;
}
.p-view-thumbnail {
    border-radius: 4px;
    overflow: hidden;
}
.p-view-thumbnail {
    border-radius: 8px;
    overflow: hidden;
    margin: -17px -17px 15px;
}
.info-modal .modal-dialog {
    max-width: 350px;
}
.info-modal .modal-content {
    border-radius: 20px;
    border: 0;
    text-align: center;
}
.info-modal .modal-header {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    z-index: 1;
    border: 0;
    margin:0 0 10px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-modal .modal-header:before {
    content: "";
    display: block;
    position: absolute;
    left: -300px;
    right: -300px;
    bottom: 0;
    width: 500px;
    height: 500px;
    background: var(--primary);
    z-index: -1;
    border-radius: 50%;
    margin: 0 auto;
    opacity: 0.1;
}
.info-modal.info-modal-danger .modal-header:before {
    background: var(--danger);
}
.info-modal.info-modal-success .modal-header:before {
    background: var(--success);
}
.info-modal.info-modal-warning .modal-header:before {
    background: var(--warning);
}
.info-modal .modal-header .icon {
    width: 102px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
	background-image: url("data:image/svg+xml,%3Csvg width='102' height='78' viewBox='0 0 102 78' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 8C6.20914 8 8 6.20914 8 4C8 1.79086 6.20914 0 4 0C1.79086 0 0 1.79086 0 4C0 6.20914 1.79086 8 4 8ZM11 9.5C11 12.1232 12.5539 14.3834 14.7914 15.4105C13.653 17.3427 13 19.5951 13 22C13 25.6174 14.4775 28.8896 16.8618 31.2463C16.2978 33.7403 16 36.3354 16 39C16 58.33 31.67 74 51 74C58.9957 74 66.3652 71.3189 72.2584 66.8066C73.6694 67.5679 75.2843 68 77 68C82.5229 68 87 63.5228 87 58C87 55.1803 85.833 52.6331 83.9555 50.8152C85.279 47.1243 86 43.1463 86 39C86 19.67 70.33 4 51 4C43.6716 4 36.8692 6.25232 31.2473 10.1025C29.6425 9.39366 27.8672 9 26 9C25.3167 9 24.6458 9.05272 23.991 9.1543C23.8113 5.72516 20.9739 3 17.5 3C13.9101 3 11 5.91015 11 9.5ZM94 13C94 16.3137 91.3137 19 88 19C84.6863 19 82 16.3137 82 13C82 9.68629 84.6863 7 88 7C91.3137 7 94 9.68629 94 13ZM16 61C16 62.6569 14.6569 64 13 64C11.3431 64 10 62.6569 10 61C10 59.3431 11.3431 58 13 58C14.6569 58 16 59.3431 16 61ZM87 78C89.7614 78 92 75.7614 92 73C92 70.2386 89.7614 68 87 68C84.2386 68 82 70.2386 82 73C82 75.7614 84.2386 78 87 78ZM102 65.5C102 67.433 100.433 69 98.5 69C96.567 69 95 67.433 95 65.5C95 63.567 96.567 62 98.5 62C100.433 62 102 63.567 102 65.5Z' fill='%231E40AF'/%3E%3Ccircle cx='51' cy='39' r='33.5' stroke='%23363636' stroke-opacity='0.15' stroke-width='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.info-modal.info-modal-danger .modal-header .icon {
    background-image: url("data:image/svg+xml,%3Csvg width='102' height='78' viewBox='0 0 102 78' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 8C6.20914 8 8 6.20914 8 4C8 1.79086 6.20914 0 4 0C1.79086 0 0 1.79086 0 4C0 6.20914 1.79086 8 4 8ZM11 9.5C11 12.1232 12.5539 14.3834 14.7914 15.4105C13.653 17.3427 13 19.5951 13 22C13 25.6174 14.4775 28.8896 16.8618 31.2463C16.2978 33.7403 16 36.3354 16 39C16 58.33 31.67 74 51 74C58.9957 74 66.3652 71.3189 72.2584 66.8066C73.6694 67.5679 75.2843 68 77 68C82.5229 68 87 63.5228 87 58C87 55.1803 85.833 52.6331 83.9555 50.8152C85.279 47.1243 86 43.1463 86 39C86 19.67 70.33 4 51 4C43.6716 4 36.8692 6.25232 31.2473 10.1025C29.6425 9.39366 27.8672 9 26 9C25.3167 9 24.6458 9.05272 23.991 9.1543C23.8113 5.72516 20.9739 3 17.5 3C13.9101 3 11 5.91015 11 9.5ZM94 13C94 16.3137 91.3137 19 88 19C84.6863 19 82 16.3137 82 13C82 9.68629 84.6863 7 88 7C91.3137 7 94 9.68629 94 13ZM16 61C16 62.6569 14.6569 64 13 64C11.3431 64 10 62.6569 10 61C10 59.3431 11.3431 58 13 58C14.6569 58 16 59.3431 16 61ZM87 78C89.7614 78 92 75.7614 92 73C92 70.2386 89.7614 68 87 68C84.2386 68 82 70.2386 82 73C82 75.7614 84.2386 78 87 78ZM102 65.5C102 67.433 100.433 69 98.5 69C96.567 69 95 67.433 95 65.5C95 63.567 96.567 62 98.5 62C100.433 62 102 63.567 102 65.5Z' fill='%23D9214E'/%3E%3Ccircle cx='51' cy='39' r='33.5' stroke='%23363636' stroke-opacity='0.15' stroke-width='3'/%3E%3C/svg%3E");
}
.info-modal.info-modal-success .modal-header .icon {
	background-image: url("data:image/svg+xml,%3Csvg width='102' height='78' viewBox='0 0 102 78' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 8C6.20914 8 8 6.20914 8 4C8 1.79086 6.20914 0 4 0C1.79086 0 0 1.79086 0 4C0 6.20914 1.79086 8 4 8ZM11 9.5C11 12.1232 12.5539 14.3834 14.7914 15.4105C13.653 17.3427 13 19.5951 13 22C13 25.6174 14.4775 28.8896 16.8618 31.2463C16.2978 33.7403 16 36.3354 16 39C16 58.33 31.67 74 51 74C58.9957 74 66.3652 71.3189 72.2584 66.8066C73.6694 67.5679 75.2843 68 77 68C82.5229 68 87 63.5228 87 58C87 55.1803 85.833 52.6331 83.9555 50.8152C85.279 47.1243 86 43.1463 86 39C86 19.67 70.33 4 51 4C43.6716 4 36.8692 6.25232 31.2473 10.1025C29.6425 9.39366 27.8672 9 26 9C25.3167 9 24.6458 9.05272 23.991 9.1543C23.8113 5.72516 20.9739 3 17.5 3C13.9101 3 11 5.91015 11 9.5ZM94 13C94 16.3137 91.3137 19 88 19C84.6863 19 82 16.3137 82 13C82 9.68629 84.6863 7 88 7C91.3137 7 94 9.68629 94 13ZM16 61C16 62.6569 14.6569 64 13 64C11.3431 64 10 62.6569 10 61C10 59.3431 11.3431 58 13 58C14.6569 58 16 59.3431 16 61ZM87 78C89.7614 78 92 75.7614 92 73C92 70.2386 89.7614 68 87 68C84.2386 68 82 70.2386 82 73C82 75.7614 84.2386 78 87 78ZM102 65.5C102 67.433 100.433 69 98.5 69C96.567 69 95 67.433 95 65.5C95 63.567 96.567 62 98.5 62C100.433 62 102 63.567 102 65.5Z' fill='%2319A263'/%3E%3Ccircle cx='51' cy='39' r='33.5' stroke='%23363636' stroke-opacity='0.15' stroke-width='3'/%3E%3C/svg%3E");
}
.info-modal.info-modal-warning .modal-header .icon {
	background-image: url("data:image/svg+xml,%3Csvg width='102' height='78' viewBox='0 0 102 78' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 8C6.20914 8 8 6.20914 8 4C8 1.79086 6.20914 0 4 0C1.79086 0 0 1.79086 0 4C0 6.20914 1.79086 8 4 8ZM11 9.5C11 12.1232 12.5539 14.3834 14.7914 15.4105C13.653 17.3427 13 19.5951 13 22C13 25.6174 14.4775 28.8896 16.8618 31.2463C16.2978 33.7403 16 36.3354 16 39C16 58.33 31.67 74 51 74C58.9957 74 66.3652 71.3189 72.2584 66.8066C73.6694 67.5679 75.2843 68 77 68C82.5229 68 87 63.5228 87 58C87 55.1803 85.833 52.6331 83.9555 50.8152C85.279 47.1243 86 43.1463 86 39C86 19.67 70.33 4 51 4C43.6716 4 36.8692 6.25232 31.2473 10.1025C29.6425 9.39366 27.8672 9 26 9C25.3167 9 24.6458 9.05272 23.991 9.1543C23.8113 5.72516 20.9739 3 17.5 3C13.9101 3 11 5.91015 11 9.5ZM94 13C94 16.3137 91.3137 19 88 19C84.6863 19 82 16.3137 82 13C82 9.68629 84.6863 7 88 7C91.3137 7 94 9.68629 94 13ZM16 61C16 62.6569 14.6569 64 13 64C11.3431 64 10 62.6569 10 61C10 59.3431 11.3431 58 13 58C14.6569 58 16 59.3431 16 61ZM87 78C89.7614 78 92 75.7614 92 73C92 70.2386 89.7614 68 87 68C84.2386 68 82 70.2386 82 73C82 75.7614 84.2386 78 87 78ZM102 65.5C102 67.433 100.433 69 98.5 69C96.567 69 95 67.433 95 65.5C95 63.567 96.567 62 98.5 62C100.433 62 102 63.567 102 65.5Z' fill='%23FFC700'/%3E%3Ccircle cx='51' cy='39' r='33.5' stroke='%23363636' stroke-opacity='0.15' stroke-width='3'/%3E%3C/svg%3E");
}
.info-modal .modal-body {
    padding: 25px 20px;
    font-size: 14px;
    font-weight: normal;
}
.info-modal .modal-body h3 {
    color: var(--dark);
    font-size: 22px;
    margin: 0 0 14px;
}
.info-modal .modal-footer {
    padding: 0 20px 35px;
    justify-content: center;
}
.info-modal .modal-body h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    line-height: 150%;
}
.toast-wrap {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    width: 420px;
    max-width: 100%;
}
.toast-wrap .toast {
    margin: 8px;
    background: var(--white);
    border: 1px solid #EBEEF2;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    font-weight: normal;
    position: relative;
    overflow: hidden;
    width: auto;
}
.toast-wrap h3 {
    color: var(--dark);
    font-size: 16px;
    margin: 0 0 5px;
}
.toast-wrap .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px;
    transition: all 0.4s;
    transform: scale(0.9);
}
.toast-wrap .btn-close:hover{
    transform: scale(0.7);
}
.toast-wrap .icon {
    border-right: 1px solid #EBEEF2;
    padding: 12px 15px 12px 5px;
    margin-right: 20px;
}
.toast-progress {
    background: var(--primary);
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    animation-name: progressline;
    animation-duration: 2s;
}
@keyframes progressline{
    0%{
        width:0;
    }
    100%{
        width:100%;
    }
}
.modal-body .size-n-value-wrap {
    max-height: none;
    overflow-y: visible;
    overflow-x: visible;
}
.modal-body ul.size-n-value li {
    width: 50%;
}
.modal-body .size-n-value-combo-top {
    vertical-align: top;
}
.stock-transfer-table-view {
    background: #F5F8FA;
    text-align: center;
    margin: 0 10px;
    border-radius: 5px 5px 0 0;
    padding: 4px;
}
ul.choose-store li{
    width: 25%;
}
.choose-store li span {
    background-color: var(--white);
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.choose-store label.size-wrap input:checked ~ span, 
label.size-wrap input:hover ~ span {
    background-color: transparent;
    color: var(--dark);
}
.chekbox-group-list li{
    margin-bottom: 10px;
    position: relative;
}
.chekbox-group-list ul li{
    padding-left:27px ;
}
.chekbox-group-list ul li::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3536 4.35355C13.5488 4.15829 13.5488 3.84171 13.3536 3.64645L10.1716 0.464466C9.97631 0.269204 9.65973 0.269204 9.46447 0.464466C9.2692 0.659728 9.2692 0.976311 9.46447 1.17157L12.2929 4L9.46447 6.82843C9.2692 7.02369 9.2692 7.34027 9.46447 7.53553C9.65973 7.7308 9.97631 7.7308 10.1716 7.53553L13.3536 4.35355ZM0 4.5H13V3.5H0V4.5Z' fill='%23E8ECF0'/%3E%3C/svg%3E");
    display: block;
    width: 13px;
    height: 13px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 8px;
    bottom: 0;
}
.chekbox-group-list,
.chekbox-group-list ul{
    position: relative;
}
.chekbox-group-list ul{
    margin-top: 10px;
}
.chekbox-group-list ul li::after {
    content: "";
    display: block;
    width: 1px;
    position: absolute;
    left: 8px;
    top: -11px;
    bottom: -19px;
    background-color: #E8ECF0;
}
.chekbox-group-list ul li:last-child:after{
    display: none;
}
.store-grid-list-box {
    background: var(--white);
    padding: 13px;
    border-radius: 16px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
}
.store-grid-list-box .image {
    border: 1px solid #F2F4F7;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.store-grid-list-box .image img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.store-grid-list-box .text {
    border-right: 1px solid var(--border-color);
    padding-right: 14px;
}
.store-grid-list-box .text h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0;
}
.store-grid-list-box .status span {
    font-size: 12px;
    background: transparent;
    font-weight: 700;
}
.store-grid-list-box .status span:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    margin-right: 5px;
}


.store-grid-list-box .date-text p {
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary);
}
.store-grid-list-box .dropdown button.btn {
    background: transparent !important;
    border: 0 !important;
}
.store-grid-list-box .dropdown button.btn:hover {
    background: var(--primary) !important;
    border: 1px !important;
}
.store-grid-list-box .store-name h6 {
    font-size: 15px;
    margin-bottom: 0;
    color: var(--dark);
}
.store-grid-list-box .store-details {
    background: rgb(244 246 251 / 70%);
    border-radius: 11px;
    padding: 14px 70px 14px 14px;
}
.store-grid-list-box .store-details h6 {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--secondary);
}
.store-grid-list-box .store-details h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0;
}
.store-grid-list-box .store-details h4 a {
    color: inherit;
}

.quotation-view-content {
    max-width: 100%;
    margin: 0 auto;
    width: 850px;
}
.table.total-table th, 
.table.total-table td {
    text-align: right;
    color: var(--dark);
    border: 0;
}
.table.total-table td {
    font-size: 14px;
}
.table.total-table th{
    font-weight: 600;
    font-size: 15px;
}


.kitchen-view-card {
    background: var(--white);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
}
.kitchen-view-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    border-right: 1px solid var(--border-color);
    padding-right: 10px;
}
.kitchen-view-card .time_count {
    font-weight: 500;
    font-size: 12px;
    color: var(--success);
    display: inline-block;
    padding-left: 15px;
    margin-left: 10px;
    position: relative;
}
.kitchen-view-card .time_count:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--success);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 0 0 0 2px #c8f1de, 0 0 0 4px rgb(200 241 222 / 30%);
}
.kitchen-view-card .time_count.text-danger:before {
    background: var(--danger);
    box-shadow: 0 0 0 2px #efc6ca, 0 0 0 4px #efc6ca48;
}
body.dark-active .modal-title .text-primary {
    color: #fff !important;
}
.kitchen-view-dropdown .btn {
    border-radius: 50px;
    min-width: 0;
}
.kitchen-view-card .card {
    border: 0;
    background: rgb(244 246 251 / 70%);
    box-shadow: none;
    padding: 7px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.kitchen-view-card .data-view-box {
    background: var(--white);
    margin-bottom: 3px;
    padding: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    font-size: 14px;
}
.data-view-box .badge {
    font-weight: 500;
}
.form-search-field-lg .field-icon {
    width: 500px;
}
.form-search-field-lg .field-icon .icon {
    width: 46px;
    height: 46px;
}
.import_data_box{
    max-width: 600px;
}
.import_data_box {
    margin: 0 auto;
}
.image-upload.image-upload-lg {
    height: 141px;
    width: 100%;
    box-shadow: none;
    background: #F5F8FA;
    margin-bottom: 36px;
}
label.image-edit-btn.image-upload-btn {
    top: 0;
    right: 0;
    bottom: 36px;
    left: 0;
    margin: auto;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    border: transparent;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: var(--body-font-size);
}
.image-upload.image-upload-lg h6 {
    margin-top: 60px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    color: #000000;
}
.image-upload.image-upload-lg p {
    color: #9FA9B7;
    font-size: 13px;
}
.product-box{
    background: var(--white);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    text-align: center;
    padding: 5px;
    margin-bottom: 20px
}
.product-box .image{
    background: #fff;
    border: 1px solid #F5F5F5;
    border-radius: 11px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-box .image a {
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
    width: 100%;
    transition: 0.5s;
}
.product-box:hover .image a img{
    transform: scale(0.9);
}
.product-box .image img {
    max-height: 100%;
    transition: 0.5s;
    display: block;
}
.box_stock_label {
    position: absolute;
    left: 0;
    top: 12px;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 0 50px 50px 0;
    z-index: 6;
}
.product-box .text {
   padding:8px;
}
.product-box .text h6{
    color: #858585;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px;
}
body.dark-active .product-box .text h6{
    color:var(--dark);
}
.product-box .text h2 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    transition: 0.3s;
    margin-bottom: 15px;
}
.product-box .text h2 a{
    color:inherit;
}
.product-box .text h2 a:hover{
    color: var(--secondary);
}
.product-box .price {
    margin: 0;
    color: #1e40af;
    font-size: 16px;
    font-weight: 500;
}
body.dark-active .product-box .price{
    color:#fff;
}
.product-box .price del{
    color:var(--muted);
    font-size: 80%;
}
.product-box-addtocart {
    background: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box-addtocart:hover {
    background: var(--secondary);
}

.category-tabs-wrap{
    background: var(--white);
    padding: 5px var(--page-content-space);
    border-top: 1px solid #EBEEF2;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.03);
    overflow-x: auto;
}
.nav-tabs.category-tabs {
    border: 0;
    border-radius: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.nav-tabs.category-tabs button.nav-link {
    border: 0;
    color:var(--muted);
    font-size: 14px;
    line-height: 34px;
    padding: 0 15px;
    border-radius: 6px;
    transition: all 0.4s;
}
.nav-tabs.category-tabs button.nav-link
.nav-tabs.category-tabs button.nav-link:hover {
    color: var(--primary);
}
.nav-tabs.category-tabs button.nav-link.active {
    color: var(--primary);
    background-color: var(--light-primary);
}




















.cart-side-bar{
    background: var(--primary);
    box-shadow: 4px 6px 24px rgba(78, 57, 162, 0.2);
    border-radius: 16px;
    padding: 20px 15px 15px;
    margin-bottom: 25px;
}
.cart-side-bar .title h2 {
    font-size: 26px;
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}
.order_contect {
    background: rgba(0, 0, 0, 0.10);
    padding: 20px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}
.order_contect .order-number {
    color: var(--white);
    text-align: center;
    position: relative;
}
.order_contect .order-number:before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--white) 50.65%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.26;
    content: "";
    width: 1px;
    height: 70px;
    display: block;
    position: absolute;
    right: 0;
    top: -13px;
}
.order_contect .order-number h4 {
    font-size: 18px;
    margin: 0;
}
.order_contect .order-number span{
    font-size: 14px;
    margin: 0;
}
.order_contect .counter-number {
    color: var(--white);
    text-align: center;
}
.order_contect .counter-number h4 {
    font-size: 18px;
    margin: 0;
}
.order_contect .counter-number span{
    font-size: 14px;
    margin: 0;
}


.cart-product .item {
    background: #F4F6FB;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 10px;
}
.cart-product .item:last-child{
    margin-bottom:0;
}
.cart-product .image{
    height:80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F2F2F2;
    border-radius: 8px;
    background:var(--white);
    overflow: hidden;
}
.cart-product .image img{
    max-height: 100%;
}
.cart-product .text .quantity {
    position: absolute;
    right: 0;
    top: 0;
}
.cart-product .text {
    position: relative;
    padding-right: 90px;
}
.cart-product .text h2 {
    font-size: 15px;
    margin-bottom: 2px;
    color: #000;
    white-space: nowrap;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-product .text h6 {
    font-size: 11px;
    font-weight: 400;
    color: #858585;
    margin-bottom: 0;
}
.quantity {
    padding: 4px 5px;
    border-radius: 6px;
    background: #1e40af;
    height: 30px;
    align-items: center;
    display: flex;
}
.quantity input.quantity-selector__input {
    border: 0;
    text-align: center;
    color: #fff;
    background: none;
    padding: 0;
    font-size: 12px;
}
.quantity button.quantity-selector__button {
    border: 0;
    background: none;
    padding: 0 5px;
    color: #fff;
    height: 22px;
}
.size_color {
    margin-top: 10px;
}
.size_color {
    display: flex;
    flex-wrap: wrap;
}
.size_color p {
    background: var(--white);
    border-radius: 40px;
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 3px;
    margin-right: 3px;
    font-weight: 600;
}
.remove-product {
    background-color: var(--white);
    border-radius: 10px;
    padding: 5px 15px;
    margin: 10px -10px -10px;
    box-shadow: -1px 0px 4px rgba(0, 0, 0, 0.03);
}
.remove-product .price {
    font-size: 15px;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
}
.remove-product .bin a img{
    transition:  0.5s;
}
.remove-product .bin a img:hover {
    transform: scale(0.9);
}
.addnote_collapse {
    margin: 10px 0 8px;
}
.hide {
    display: none;
}













.payment-progress {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.payment-progress > li {
    margin-right: 15px;
}
.payment-progress > li:last-child{
    margin: 0;
}
.payment-progress > li > a {
    border-radius: 50%;
    display: flex;
    background: var(--white);
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.02);
}
.payment-progress > li.active > a {
    background: var(--white);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    width: 90px;
    height: 80px;
}


.nav-tabs.paymentmathed-tabs {
    display: block;
    margin: 0 ;
    border: 0;
}
.nav-tabs.paymentmathed-tabs .nav-item {
    margin-bottom: 10px;
}
.nav-tabs.paymentmathed-tabs .nav-link {
    display: flex;
    border-radius: 10px;
    line-height: 120%;
    font-size: 16px;
    color: var(--dark);
    text-align: center;
    align-items: center;
    min-height: 60px;
    padding: 0 15px;
    position: relative;
    transition: all 0.5s;
    border:1px solid rgba(0,0,0,0);
    width: 100%;
}
.nav-tabs.paymentmathed-tabs .nav-link.active {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.04);
    background:var(--white);
    border-color: rgba(0,0,0,0.1);
}
.nav-tabs.paymentmathed-tabs .nav-link .icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    position: relative;
    margin-right: 10px;
} 
body.dark-active .nav-tabs.paymentmathed-tabs .nav-link .icon{
    filter: brightness(0) invert(1);
}
body.dark-active .modal-content {
    background: #182034;
}
body.dark-active .modal-content .modal-header{
    border-color:rgba(0,0,0,0.5)
}
body.dark-active .btn-light-primary {
    --cs-btn-color: #fff;
    --cs-btn-hover-color:#fff;
}
body.dark-active .modal-header .btn-close{
    filter: brightness(0) invert(1);
}
.paymentmathed-tab-content {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 25px;
    background:var(--white);
    border-radius: 10px;
}
.paymentmathed-tab-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 500;
}
.paymentmathed-tab-content h4 {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 22px;
}
.bg-light{
    background-color: var(--light) !important;
}
.checkout-data-table table.table, 
.checkout-data-table table.table th, 
.checkout-data-table table.table td {
    padding: 8px 0;
    border: 0;
    font-size: 15px;
    height: auto;
}
.checkout-data-table {
    margin-bottom: 15px;
}
.checkout-data-table table.table tbody tr:last-child td{
    padding-bottom:15px;
}
.checkout-data-table table.table .total-tr td{
    font-size: 20px;
    border-top: 2px dashed rgba(217, 228, 255, 0.64);
    padding-top:15px;
}
body.dark-active tr.total-tr{
    color:#fff;
}
.paymentmathed-tab-content-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    margin: 10px 0 30px;
}
.discount-fields-wrap {
    background: var(--light);
    padding: 10px;
    border-radius: 8px;
}
.paymentmathed-tab-content .scanqr_wrap h2 {
    text-align: center;
    border: 0;
    padding: 0;
}


.scanqr_code {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: var(--white);
    border-radius: 5px;
    width: 170px;
    margin: 0 auto;
}
.switch-control label {
    margin: 0;
    display: block;
}
.switch-control label input{
    display: none;
}
.switch-control label span {
    width: 44px;
    height: 22px;
    background: #eff1f6;
    display: block;
    border-radius: 50px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}
.switch-control label input:checked ~ span{
    background:var(--primary);
}
.switch-control label span:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50px;
    margin: 3px;
    transition:all 0.3s;
}
.switch-control label input:checked ~ span:before{
    left:22px;
    background:var(--white);
}
.add-note-switch {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-right:30px;
}
.add-note-switch .switch-control {
    margin-left:10px;
}
.cart-product .text {
    position: relative;
    padding-right: 90px;
}
.modal-body ul.size-n-value.select_modifier li {
    width: 25%;
}

.order-menubar{
    background-color: var(--white);
    height: 100%;
    width: 420px;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.5s;
    transform: translate(100%);
    z-index: 9999;
}
.order-menu-open .order-menubar{
    transform: translate(0);
}
.order-menu-overlay{
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
    z-index: 999;
}
.order-menu-open .order-menu-overlay{
    visibility: visible;
    opacity: 1;
}

.order-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #E8ECF0;
}
.order-menu-body {
    padding: 22px 24px;
}
.hold-order-list .image {
    background: var(--white);
    border: 0.797297px solid #F2F4F7;
    border-radius: 4.72px;
    padding: 3px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hold-order-list .text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}
body.dark-active .hold-order-list .text h4{
    color:#fff;
}
.store-details h4 {
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    color: #1E293B;
    margin-bottom: 0;
}
.store-details h6 {
    font-size: 11px;
    font-weight: 500;
    line-height: 15px;
    margin-bottom: 2px;
}
.store-details {
    background-color: #F4F6FB;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 6px;
}
.hold-order-list {
    background: var(--white);
    border: 1px solid #E4E8F5;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
}
.hold-order-list:last-child {
    margin-bottom: 0px;
}
.hold-order-list-wrap{
    max-height: 61vh;
    overflow-y: auto;
}

/*Dashboard CSS*/
body.header-navbar-disable {
    padding-top: 54px;
}
.darshboard-counter {
    background: var(--white);
    box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    padding: 20px 90px 20px 20px;
    position: relative;
    margin-bottom: 20px;
}
.darshboard-counter .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 90px;
}
.darshboard-counter h6 {
    font-size: 16px;
    margin: 0 0 6px;
}
.darshboard-counter h3 {
    font-size: 26px;
    color: var(--dark);
    font-weight: 700;
    margin: 0;
}
.welcome-box {
    background-image: url("../images/welcome-box-art.svg");
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #1B283F;
    border-radius: 12px;
    padding: 30px 20px 160px 20px;
    text-align: center;
    color: var(--white);
    margin-bottom: 22px;
}
.welcome-box h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 14px;
}
.welcome-box p {
    font-weight: normal;
    font-size: 14px;
    opacity: 0.7;
    margin: 0 0 15px;
}

.card-mini-caounter {
    padding: 15px;
    position: relative;
    margin-bottom: 12px;
    background: var(--white);
    border: 1px solid var(--light);
    box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}
.card-mini-caounter h6{
    font-size: 15px;
    margin: 0 0 3px;
}
.card-mini-caounter h3 {
    font-size: 22px;
    color: var(--dark);
    font-weight: 700;
    margin: 0;
}
.dashboard-fancy-card {
    background: var(--white);
    box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    margin-bottom: 22px;
}
.dashboard-fancy-card .card_head {
    border-radius: 12px 12px 0 0;
    color: var(--white);
    padding: 18px 18px 75px;
}
.dashboard-fancy-card .card_head h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 3px;
}
.dashboard-fancy-card .card_head h5 {
    font-weight: normal;
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
}
.dashboard-fancy-card .card_content {
    padding: 0 18px 18px;
    margin-top: -50px;
}
html .card.payment-chart-card {
    border-radius: 12px;
    border: 0;
}
html .card.payment-chart-card h2 {
    font-size: 26;
    color: var(--dark);
    margin: 0 0 15px;
    font-weight: 700
}
.payment_chart_data .item {
    position: relative;
    padding-left: 20px;
    margin: 0 0 20px;
}
.payment_chart_data .item:last-child{
    margin-bottom: 0;
}
.payment_chart_data .item .line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: 5px;
}
.payment_chart_data .item h3 {
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px;
}
.payment_chart_data .item  h6 {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
}
.input-group.input-file-group .btn {
    font-size: 14px;
    line-height: 36px;
}
.input-group.input-file-group .form-control {
    line-height: 38px;
}
.input-group.input-file-group .form-control::file-selector-button {
    display: none;
}
.input-group.input-file-group .form-control::-webkit-file-upload-button {
    display: block;
    width: 0;
    height: 0;
    margin-left: -100%;
}
.input-group.input-file-group .form-control::-ms-browse {
    display: none;
}


.uploaded-list {
    margin-top: 20px;
}
.uploaded-list .item {
    background: #F5F8FA;
    border-radius: 10px;
    padding: 10px;
    margin: 0 0 10px;
}
.uploaded-list .item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.uploaded-list .item .icon img{
    max-height: 100%;
}
.uploaded-list .item h4 {
    font-size: 15px;
    margin: 0 0 4px;
}
.uploaded-list .item h5 {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}
.uploaded-list .item .btn{
    padding:7px;
}
.uploaded-list .item .btn:hover svg *{
    fill:var(--danger);
}
.upload_progress {
    height: 5px;
    border-radius: 5px;
    background: #E8E8E8;
    margin-bottom: 5px;
}
.upload_progress span {
    display: block;
    height: 100%;
    background: var(--primary);
    border-radius: 5px;
}

.store-pacific-market {
    text-align: center;
}
.store-pacific-market .image {
    height: 140px;
    margin-bottom: 5px;
}
.store-pacific-market .image img {
    border: 5px solid #E3EAFF;
    border-radius: 50%;
}
.store-pacific-market .text h5 {
    font-size: 20px;
    margin-bottom: 0;
    margin-right: 12px;
}
.store-pacific-market .text {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.store-pacific-market .text span {
    color: #198754;
    font-size: 14px;
    font-weight: 700;
}
.store-pacific-market ul.notification {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.store-pacific-market ul.notification li{
    margin-right: 10px;
}
.store-pacific-market ul.notification li:last-child{
    margin-right: 0px;
}
.store-pacific-market ul.notification li a{
    height: 34px;
    width: 34px;
    border-radius: 50%;
    background-color: #E3EAFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.store-pacific-market ul.notification li:hover a {
    background-color: var(--primary);
    color: var(--white);
}
.store-pacific-market ul.category-tabs {
    justify-content: center;
}
.store-pacific-market ul.category-tabs {
    justify-content: center;
    margin-bottom: 18px;
}
.store-pacific-market table tr {
    border-bottom: 2px solid #E3EAFF;
}
.store-pacific-market table tr td {
    padding: 10px 5px;
    width: 5%;
}
.store-pacific-market table tr td:last-child {
    width: 0;
}
.store-pacific-market table tr th {
    padding: 10px 5px;
    width: 30%;
}
.card.edit-store-card {
    background-color: #E3EAFF;
    padding:5px;
}
.edit-store-card-head {
    padding: 5px;
    margin-bottom: 5px;
}
.card .edit-store-card-head h2 {
    line-height: 34px;
}
.white-card {
    background-color: var(--white);
    padding: 8px;
    border-radius: 6px;
}
.white-card ul.size-n-value {
    margin: 0;
    max-height: 54vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.white-card ul.size-n-value li {
    width: 100%;
    margin-bottom: 6px;
    padding: 0;
    position: relative;
}
.white-card ul.size-n-value li label.size-wrap span {
    padding:10px 45px 10px 12px;
    text-align: left;
    font-size: 14px;
    background: var(--white);
}
.white-card ul.size-n-value li label.size-wrap input:checked ~ span {
   color:var(--white);
    background: var(--primary);
}
.white-card ul.size-n-value li .btn {
    position: absolute;
    right: 0;
    top: 0;
    margin: 4px;
}
.store-image-upload {
    position: relative;
}
.store-image-upload label {
    width: 100px;
    height: 100px;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #F5F8FA;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.store-image-upload .btn {
    width: 26px !important;
    height: 26px !important;
    background: var(--white) !important;
    border-color:transparent !important;
    position: absolute;
    right: 0;
    top: 0;
    margin: 5px;
    min-width: 0 !important;
    line-height: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    justify-content: center;
    border-radius: 50px;
    color: var(--primary) !important;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
.store-image-upload .btn:hover{
    color:var(--white) !important;
    background-color:var(--dark) !important;
}
.store-image-upload .btn.btn-danger{
    color:#DC3545 !important;
    background-color:var(--white) !important;
}
.store-image-upload .btn.btn-danger:hover{
    color:var(--white) !important;
    background-color:var(--dark) !important;
}
.uploaded-list {
    margin-top: 20px;
}
.uploaded-list .item {
    background: #F5F8FA;
    border-radius: 10px;
    padding: 10px;
    margin: 0 0 10px;
}
.uploaded-list .item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}
.uploaded-list .item .icon img{
    max-height: 100%;
}
.sub-menu-navigation-toggle {
    display: none;
}
ul.menu-navigation > li ul {
    display: none;
}


body.add-order-page {
    padding: 0;
    padding-top: 73px;
}
body.add-order-page header {
    padding-left: 10px;
}
body.add-order-page header .sidebar-logo {
    margin: 0;
    min-height: 50px;
}
.category-tabs-wrap.add-order-tab {
    background-color: transparent;
    box-shadow: none;
    border: 0;
}
html .add-order-page .category-tabs .nav-item{
    margin-right: 5px;
}
html .add-order-page .category-tabs .nav-item:last-child{
    margin-right: 0;
}

html .add-order-page .category-tabs .nav-item .nav-link{
    border: 1px solid var(--light);
    line-height: 42px;
    background-color: var(--white); 
}
html .add-order-page .category-tabs .nav-item .nav-link.active{
    background-color: #1E40AF;
    border-color: #1E40AF;
    color: #fff;
}
body.dark-active.add-order-page .category-tabs .nav-item .nav-link.active{
    color:var(--primary);
    background-color: #fff;
}
html .add-order-page .category-tabs .nav-item .nav-link.nav-link-lg{
    line-height: 48px;
    min-height: 50px;
}
html .add-order-page .category-tabs .nav-item .nav-link.nav-link-sm{
    line-height: 36px;
}
html .add-order-page .category-tabs-wrap{
    background: transparent !important;
    border: 0;
    box-shadow: none !important;
}
body.add-order-page .header-profile-name {
    height: 44px;
    border: 1px solid #E3E7EF;
    width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.order-checking {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    border-radius: 50px;
    overflow: hidden;
    justify-content: space-between;
    border: 1px solid #E3E7EF;
}
body.dark-active ul.order-checking{
    border-color:var(--light);
}
ul.order-checking li a {
    line-height: 52px;
    background: var(--white);
    padding: 0 57px;
    display: block;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    color:#1e40af;
}
body.dark-active ul.order-checking li a{
    color:#fff;
}
ul.order-checking li {
    width: 33.33%;
    border-right: 1px solid var(--light);
}
ul.order-checking li.active a{
    background-color: var(--primary);
    color: #fff;
}
body.dark-active ul.order-checking li.active a{
    color: var(--primary);
    background-color: #fff;
}
ul.order-checking li:hover a {
    background-color: var(--primary);
    color: #fff;
}
ul.order-checking li:last-child {
    border-right: 0;
}
.field-icon.field-icon-lg .icon {
    width: 46px;
    height: 46px;
}
.category-tabs-border {
    border-top: 1px solid #E3E7EF;
    padding-top: 15px;
}
body.dark-active .category-tabs-border{
    border-color:var(--primary);
}
.category-tabs-wrap.Category-tab {
    padding-bottom: 10px;
}
body.add-order-page .product-box .text h2 {
    margin-bottom: 8px;
}

.box-img-label {
    position: absolute;
    top: 12px;
    left: auto;
    right: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.box-img-label span {
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 50px 0px 0px 50px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 5px;
}
.add-order-list{
    background: var(--white);
    border-radius: 0 0 0 7px;
    padding: 15px;
    margin-bottom: 10px;
}
.order-categorys {
    padding: 20px 0px 20px 20px;
}
.jacket-size {
    background: rgba(30, 64, 175, 0.05);
    border-radius: 50px;
    margin-right: 6px;
    padding: 4px 8px;
}
.order-list {
    display: flex;
    align-items: center;
}
.checkout-data-table.add-order-checkout {
    background: var(--white);
    border-top: 1px solid #ECF1FB;
    border-radius: 7px;
    padding: 18px 20px 14px;
}
.checkout-data-table.add-order-checkout table.table, .checkout-data-table.add-order-checkout table.table th, .checkout-data-table.add-order-checkout table.table td {
    color: #000;
}
.add_order_varation {
    background: rgba(30, 64, 175, 0.05);
    border-radius: 50px;
    padding: 4px 5px;
    font-size: 12px;
    margin: 0 0 4px 0;
}
.add-order-list .item {
    border: 1px solid #E4E8F5;
    padding: 8px 60px 8px 8px;
    border-radius: 10px;
    margin: 0 0 10px;
    position: relative;
}
body.dark-active .add-order-list .item{
    border-color:#364466;
}
.add-order-list .item:last-child{
    margin-bottom:0;
}
.add-order-list .item .close-item-order {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    background: rgba(220, 53, 69, 0.1);
    color: #DC3545;
    border-radius: 10px;
}
.add-order-list .item .close-item-order:hover{
    background: #DC3545;
    color: var(--white);
}
.add-order-list .item h3 {
    font-size: 16px;
    margin-bottom: 4px;
}
.checkout-btn .btn {
    min-height: 50px;
    line-height: 120%;
    padding: 0 10px;
    font-weight: 600;
}
body.dark-active .modal-body .checkout-btn .btn:not(:hover){
    background: var(--dark) !important;
    color: var(--light) !important;
}
.order_sticky {
    position: sticky;
    top: 76px;
}
.add-order-list .items {
    max-height:55vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.add-order-list .hold-order-list-wrap {
    max-height: 61vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.add_order_price {
    font-size: 15px;
    color:#1e40af;
    font-weight: 700;
}
body.dark-active .add_order_price{
    color:#fff;
}
.dine-in .modal-header h5 {
    margin: 0 auto !important;
    font-size: 28px;
    color:var(--muted);
}
.dine-in .modal-header {
    border-bottom: 0;
    padding: 30px 25px 20px;
}
.dine-in .modal-header button.btn-close {
    position: absolute;
    top: 20px;
    right: 25px;
}
.dine-in .modal-dialog {
    max-width: 900px;
}
.dine-in-seating .nav-tabs {
    border: 0;
}
.dine-in-seating .nav-item .nav-link {
    border: 1px solid #E1E8EF;
    border-radius: 6px;
    line-height: 44px;
    padding: 0 13px;
    margin: 0;
    min-width: 46px;
    text-align: center;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
}
.dine-in-seating .nav-item + .nav-item {
    margin-left: 10px;
}
.dine-in-seating .nav-item .nav-link.active {
    color: var(--white);
    border-color: transparent;
    background: var(--primary);
}
body.dark-active .dine-in-seating .nav-item .nav-link.active{
    color:#182034;
    background-color: #fff;
}
.dine-in-seating h6 {
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
    color: var(--dark);
}
.dine-in .modal-dialog.modal-xl {
    max-width: 88%;
}

.table_item {
    max-width: 170px;
    margin: 0 auto 30px;
}
.table_item label {
    display: block;
    padding-top: 55%;
    position: relative;
}
.table_item label input{
    display: none;
}
.table_item label span small {
    display: block;
    margin-top: 0px;
    opacity: 0.9;
    font-size: 12px;
    line-height: 120%;
}
.table_item label span {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #1e293b;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 120%;
    background-image: url("../images/dine-in/table/table-2/available.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.table_item.item_shared label input:checked ~ span ,
.table_item label input:checked ~ span {
    background-image: url("../images/dine-in/table/table-2/selected.svg");
    color:#fff;
}
.table_item.item_booked label input ~ span {
    background-image: url("../images/dine-in/table/table-2/booked.svg");
    color:#fff;
    cursor: no-drop;
}
.table_item.item_shared label input ~ span {
    background-image: url("../images/dine-in/table/table-2/shared.svg");
    color:#fff;
}

.table_item.item_rounded label span {
    background-image: url("../images/dine-in/table/table-2/available-rounded.svg");
}
.table_item.item_rounded.item_shared label input:checked ~ span ,
.table_item.item_rounded label input:checked ~ span {
    background-image: url("../images/dine-in/table/table-2/selected-rounded.svg");
}
.table_item.item_rounded.item_booked label input ~ span {
    background-image: url("../images/dine-in/table/table-2/booked-rounded.svg");
}
.table_item.item_rounded.item_shared label input ~ span {
    background-image: url("../images/dine-in/table/table-2/shared-rounded.svg");
}


.table_item.table_seat_4 label {
    padding-top: 85%;
}
.table_item.table_seat_4 label span {
    background-image: url("../images/dine-in/table/table-4/available.svg");
}
.table_item.table_seat_4.item_shared label input:checked ~ span ,
.table_item.table_seat_4 label input:checked ~ span {
    background-image: url("../images/dine-in/table/table-4/selected.svg");
}
.table_item.table_seat_4.item_booked label input ~ span {
    background-image: url("../images/dine-in/table/table-4/booked.svg");
}
.table_item.table_seat_4.item_shared label input ~ span {
    background-image: url("../images/dine-in/table/table-4/shared.svg");
}

.table_item.table_seat_4.item_rounded label span {
    background-image: url("../images/dine-in/table/table-4/available-rounded.svg");
}
.table_item.table_seat_4.item_rounded.item_shared label input:checked ~ span ,
.table_item.table_seat_4.item_rounded label input:checked ~ span {
    background-image: url("../images/dine-in/table/table-4/selected-rounded.svg");
}
.table_item.table_seat_4.item_rounded.item_booked label input ~ span {
    background-image: url("../images/dine-in/table/table-4/booked-rounded.svg");
}
.table_item.table_seat_4.item_rounded.item_shared label input ~ span {
    background-image: url("../images/dine-in/table/table-4/shared-rounded.svg");
}




.table_item.table_seat_6 {
    max-width: 260px;
}
.table_item.table_seat_6 label {
    padding-top:65%;
}
.table_item.table_seat_6 label span {
    background-image: url("../images/dine-in/table/table-6/available.svg");
}
.table_item.table_seat_6.item_shared label input:checked ~ span ,
.table_item.table_seat_6 label input:checked ~ span {
    background-image: url("../images/dine-in/table/table-6/selected.svg");
}
.table_item.table_seat_6.item_booked label input ~ span {
    background-image: url("../images/dine-in/table/table-6/booked.svg");
}
.table_item.table_seat_6.item_shared label input ~ span {
    background-image: url("../images/dine-in/table/table-6/shared.svg");
}


.table_item.table_seat_6.item_rounded label span {
    background-image: url("../images/dine-in/table/table-6/available-rounded.svg");
}
.table_item.table_seat_6.item_rounded.item_shared label input:checked ~ span ,
.table_item.table_seat_6.item_rounded label input:checked ~ span {
    background-image: url("../images/dine-in/table/table-6/selected-rounded.svg");
}
.table_item.table_seat_6.item_rounded.item_booked label input ~ span {
    background-image: url("../images/dine-in/table/table-6/booked-rounded.svg");
}
.table_item.table_seat_6.item_rounded.item_shared label input ~ span {
    background-image: url("../images/dine-in/table/table-6/shared-rounded.svg");
}



.table_item.table_seat_8 {
    max-width: 400px;
}
.table_item.table_seat_8 label {
    padding-top:50%;
}
.table_item.table_seat_8 label span {
    background-image: url("../images/dine-in/table/table-8/available.svg");
}
.table_item.table_seat_8.item_shared label input:checked ~ span ,
.table_item.table_seat_8 label input:checked ~ span {
    background-image: url("../images/dine-in/table/table-8/selected.svg");
}
.table_item.table_seat_8.item_booked label input ~ span {
    background-image: url("../images/dine-in/table/table-8/booked.svg");
}
.table_item.table_seat_8.item_shared label input ~ span {
    background-image: url("../images/dine-in/table/table-8/shared.svg");
}

.table_item.table_seat_8.item_rounded label span {
    background-image: url("../images/dine-in/table/table-8/available-rounded.svg");
}
.table_item.table_seat_8.item_rounded.item_shared label input:checked ~ span ,
.table_item.table_seat_8.item_rounded label input:checked ~ span {
    background-image: url("../images/dine-in/table/table-8/selected-rounded.svg");
}
.table_item.table_seat_8.item_rounded.item_booked label input ~ span {
    background-image: url("../images/dine-in/table/table-8/booked-rounded.svg");
}
.table_item.table_seat_8.item_rounded.item_shared label input ~ span {
    background-image: url("../images/dine-in/table/table-8/shared-rounded.svg");
}




.icon_label_radio input {
    display: none;
}
.icon_label_radio > span {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--light);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}
.icon_label_radio > span .icon {
    margin-right: 10px;
    opacity: 0.5;
    transition: all 0.3s;
}
.icon_label_radio input:checked ~ span{
    border-color:var(--light);
    color:var(--dark);
    background-color: var(--light);
}

.icon_label_radio input:checked ~ span .icon {
    color:var(--muted);
    opacity: 1;
}

.icon_label_radio input:checked ~ span .icon svg *{
    fill:var(--muted);
}








.dine-in ul.btn_status {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    color: #717171;
    font-size: 18px;
}
.dine-in ul.btn_status li {
    display: flex;
    align-items: center;
    margin-right:15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}
.dine-in ul.btn_status .label_box {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    border-radius: 3px;
}
.dine-in ul.btn_status li:last-child {
    margin-right: 0px;
}
.add-order-page .btn.btn-xl {
    min-width: 250px;
    line-height: 48px;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
}


.select_combo .table.table-list-data tbody td {
    border: 1px solid #F5F8FA;
    box-shadow: none;
}
.select_combo ul.size-n-value.size-n-value-combo li span p {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 200;
}
.select_combo .table.table-list-data tbody td > b {
    font-size: 18px;
    color: #1E293B;
}
.select_combo .table.table-list-data thead tr th {
    padding: 8px 10px;
}
.select_combo table.table.table-list-data {
    border-collapse: collapse;
    margin-top: 0;
}
.select_combo .table.table-list-data thead th:last-child, .table.table-list-data tbody td:last-child {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 0px !important;
}
.select_combo .table.table-list-data thead th:first-child, .table.table-list-data tbody td:first-child{
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 0 !important;
}
.modal-body.select_combo .table tbody td, .table tbody th {
    padding: 16px 12px;
}

html .table tbody tr.tr-total th {
    font-size: 15px;
}


.makepayment-counter h6 {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}
.makepayment-counter h3 {
    font-size: 26px;
    color: var(--dark);
    font-weight: 700;
    margin: 0 0 5px 0;
}
.makepayment-counter {
    padding: 15px;
    margin: 0 0 20px;
    background: var(--light);
    border-radius: 10px;
}

.kitchen-view-card .data-view-box.selected {
    background: var(--light-primary);
}
.kitchen-view-card h6 {
    font-weight: normal;
}
.nav-tabs.cart-nav-tabs {
    background: var(--light);
    margin: 0 0 10px;
    border-radius: 10px;
    padding: 6px;
    border: 0;
}
.nav-tabs.cart-nav-tabs .nav-item {
    flex-grow: 1;
    min-width: 50%;
}
.nav-tabs.cart-nav-tabs .nav-item .nav-link {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--dark);
    padding: 10px 10px;
    line-height: 20px;
    font-size: 15px;
    text-transform: uppercase;
}
.nav-tabs.cart-nav-tabs .nav-item .nav-link.active {
    background-color: var(--primary);
    color:#fff;
}


.nav-tabs.nav-tabs-product {
    padding: 5px;
    background: var(--white);
    border-radius: 50px;
    margin: 0 0 15px;
    border: 0;
}
.nav-tabs.nav-tabs-product .nav-link {
    color: var(--dark);
    font-size: 15px;
    padding: 0 25px;
    line-height: 42px;
    border-radius: 50px;
    border: 0;
}
.nav-tabs.nav-tabs-product .nav-link.active {
    background: var(--primary);
    color: var(--white);
}
.nav-tabs.nav-tabs-product {
    padding: 6px;
    background: var(--white);
    border-radius: 50px;
    margin: 0 0 15px;
    border: 1px solid rgba(225, 232, 239, 0.8);
}
.sidebar-collapsein ul.header-icon-list {
    display: none;
}
ul.combo-product-items li{
    display: flex;
    align-items: center;
}
ul.combo-product-items li + li{
    border-top:1px solid #dedede;
    padding-top: 15px;
    margin-top: 15px;
}
ul.combo-product-items li .img {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 7px;
    margin-right: 12px;
    overflow: hidden;
}
ul.combo-product-items li .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
ul.combo-product-items li h4 {
    margin: 0;
    font-size: 18px;
}
html .select2-results__option .head h3 {
    font-size: 14px;
    margin-bottom: 3px;
    font-weight: 500;
}
html .select2-results__option .wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
html .select2-results__option .wrp h5{
    font-size: 12px;
    margin-bottom: 0;
    font-weight: normal;
}



html .modifiers-card {
    padding: 12px;
    margin: 0;
}
html .modifiers-card h2 {
    font-weight: 700;
    margin-bottom: 0;
    color: var(--dark);
}
.size-list-wrap {
    background: #f4f6fbb3;
    border-radius: 8px;
    padding: 14px;
}
.size-list-wrap h4 {
    font-size: 14px;
    font-weight: 700;
}
.size-list-wrap h4 span {
    font-weight: 400;
}
.size-list-wrap .btn {
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    padding: 0 10px;
    min-width: 0;
}
.size-list-wrap .btn svg {
    width: 10px;
    height: 10px;
}
.size-list-wrap ul {
    margin: 6px 2px 0 14px;
}
.size-list-wrap ul li {
    background: #FFF;
    padding: 12px;
    line-height: 12px;
    border: 1px solid #F5F5F5;
    border-radius: 6px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--dark);
    font-size: 12px;
    font-weight: 500;
}
.size-list-wrap ul li .pr {
    font-weight: 400;
}





ul.recent-search {
    background: var(--white);
    border: 1px solid rgba(225, 232, 239, 0.8);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.03);
    padding: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 9;
}   
ul.recent-search li {
    font-size: 14px;
    padding: 6px 10px;
    transition: all 0.4s;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}
ul.recent-search li:last-child{
    border-bottom: 0;
}
ul.recent-search li:hover {
    background: var(--primary);
}
ul.recent-search li:hover h2,
ul.recent-search li:hover h4{
    color: var(--white);
}
ul.recent-search li h2 {
    font-size: 13px;
    margin-bottom: 4px;
    transition: all 0.4s;
}
ul.recent-search li .wpr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.recent-search li .wpr h4 {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: normal;
    transition: all 0.4s;
}
.b-name {
    text-align: center;
    margin: 0 10px 15px;
    font-size: 15px;
    display: none;
    background: var(--light);
    border-radius: 5px;
    padding: 8px;
}
.sidebar-collapsein .b-name {
    display: block;
}


/*added by rajan*/
.error{
    color: #DC3545;
    display: inline-block;
    vertical-align: top;
    margin-top: 4px;
    font-size: 13px;
    line-height: 120%;
}

.select2.select2-container{
    background-color: var(--field-bg);
    border-radius: 6px;
    height: 38px;
    font-size: var(--body-font-size);
    box-shadow: 0 0 0 transparent !important;
    color: var(--dark);
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.select2.select2-container .selection{
    width: 100%;
}

.field-icon .select2-container--default .select2-selection--single{
    border:none;
    background-color: var(--field-bg);
    width: 100%;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #1e40af!important;
}

.sidebar-inner-content::-webkit-scrollbar {
    display: none;
}
.sidebar-inner-content {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.sidebar-inner-content .simplebar-placeholder{
    height: auto !important;
}
.dataTables_filter label, .dataTables_length label {
    display: flex;
    align-items: center;
}
.dt-filter-wrap .form-control {
    background-color: #fff;
    margin: 0 0 0 8px;
}
html .dataTables_processing {
    text-align: center;
    font-size: 14px;
    max-width: 350px;
    margin: auto;
    position: fixed;
    left:0;
    right:0;
    top:50%;
    transform:translatey(-50%);
}
.dataTables_paginate {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.dataTables_empty{
    text-align: center;
}

.badge.green-label{
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}
.badge.red-label{
    background: rgba(220, 53, 69, 0.1);
    color: #DC3545;
}
.badge.blue-label{
    background: rgba(140, 116, 240, 0.1);
    color: #4935dc;
}
.badge.grey-label{
    background: rgba(96, 95, 95, 0.1);
    color: #000000;
}
.badge.orange-label{
    background-color: rgba(255, 193, 7,0.1);;
    color: #efb402;
}
.badge.yellow-label {
    background-color: #fff1c0;
    color: #f6bb00;
}
.html .form-control{
    height: 34px;
}

button i{
    padding: 0px 5px;
}
input[type="checkbox"],
input[type="radio"]{
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
.form-group label {
    vertical-align: top;
    margin-bottom: 2px;
}
div#app {
    min-height: calc(100vh - 160px);
}
.form-group{
    padding-bottom: 15px;
}
label em {
    color: red;
    font-style: normal;
}
.list-with-search {
    background: #fff;
    padding: 10px;
    border: 1px solid rgba(225, 232, 239, 0.8);
    border-radius: 6px;
    max-height:350px;
    overflow-x:hidden;
    overflow-y:auto;
}
.list-with-search .item + .item {
    border-top: 1px solid rgba(225, 232, 239, 0.8);
    padding-top: 14px;
    margin-top: 14px;
}
.list-with-search .item .card {
    padding: 0 10px;
    border: 0;
    box-shadow: 0 0 0 transparent;
}
.list-with-search .item .card img {
    max-width: 30px;
    max-height: 30px;
    margin-right: 10px;
    margin-left: 5px;
}
.select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple{
    background-color: var(--field-bg) !important;
    border: 1px solid var(--field-bg) !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #1e40af !important;
    border: 1px solid #1e40af !important;
    color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color: #fff !important;
}
.status-selected{
    border: 1px solid #1e40af !important;
    border-radius: 3px;
    color: #fff;
    background: var(--primary);
}
.card-body.border-primary{
    border-radius: 5px;
}

.empty-input{
    display: block;
    padding: 9px 15px;
    background: var(--field-border-focus);
    border-radius: 6px;
}

.category-tag-wrapper {
    margin-bottom: 12px;
    padding-bottom: 5px;
    flex-wrap: nowrap;
    overflow: auto;
}
.category-tag-wrapper li a{
    margin:0 4px 4px 0;
    display:inline-block;
    vertical-align: top;
    border-radius:4px;
    padding:0 10px;
    line-height:30px;
    font-size:14px;
    white-space: nowrap;
    background:#fff;
}
.span.active .category-tag,
.category-tag-wrapper li a:hover,
.category-tag-wrapper li a.active{
    background-color: var(--primary);
    color:#fff;
}
html .toast-container>div {
    border-radius: 10px;
    box-shadow: 0 0 12px 0 rgba(0,0,0,0.1);
    border: 1px solid #dedede;
}
html .toast-container>div:hover{
    box-shadow: 0 0 12px 0 rgba(0,0,0,0.2);
}
html .select-product-piece-count {
    height: 30px;
    border-radius: 6px;
}
html .select-product-piece-count .form-control {
    height: 30px;
}

html .cart-product-row{
    padding: 15px 0px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
html .cart-product-row:last-child {
    border: none;
}
html .cart-product-row:last-child {
    padding-bottom: 0px;
}
html .cart-product-row:first-child {
    padding-top: 0px;
}
html .mx-datepicker{
    width: 100%;
}
.dashboard .custom-block-height{
    /*height: 260px !important;*/
    height: auto !important;
}
.dashboard .custom-block-green{
    background-image: url(../images/green-bottom.jpg);
    background-position: bottom;
    background-size: 100% 100px;
    background-repeat: no-repeat;
}

.dashboard .custom-block-blue{
    background-image: url(../images/red-bottom.jpg);
    background-position: bottom;
    background-size: 100% 100px;
    background-repeat: no-repeat;
}

.dashboard .custom-icon-green {
    background: #d3f5e4;
    padding: 10px 8px;
    font-size: 20px;
    border-radius: 100%;
    color: #33ce7e;
}

.dashboard .custom-icon-blue {
    background: #fad5d5;
    padding: 10px 8px;
    font-size: 20px;
    border-radius: 100%;
    color: #f36b6b;
}

.dashboard label {
    color: var(--label-color);
    font-size: 13px;
    font-weight: 500;
}

ul.icon-list-group li {
    background: var(--light);
    padding: 6px;
    display: flex;
    align-items: center;
    margin: 0 0 6px;
    border-radius: 8px;
    font-size: 15px;
}
ul.icon-list-group li b {
    font-weight: 700;
    font-size: 120%;
    margin-right: 8px;
}
ul.icon-list-group li .icon {
    width: 50px;
    background: #fff;
    color: var(--dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 5px;
    margin-right: 12px;
}
ul.icon-list-group li .icon i{
    color:var(--primary);
    font-size: 16px;
}
ul.icon-list-group li .icon small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    line-height: 120%;
}
.icon-list-group-wrap{
    max-height:250px;
    overflow:auto;
    overflow-x:hidden;
}
.icon-group-total {
    font-size: 17px;
    padding: 8px 13px;
    background: #fff;
}
ul.list-group.dashboard-progressbar-block li {
    padding: 10px;
    margin: 0 0 10px;
    border: 1px solid var(--light);
    border-radius: 6px;
}
.product-price {
    flex-grow: 1;
}

.check-buttons {
    background: #fff;
    color: inherit;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 400;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
}

.check-buttons:hover {
    color: #3699ff;
    background-color: #e1f0ff;
    border-color: transparent;
}

.check:checked ~ .check-buttons {
    color: #3699ff;
    background-color: #e1f0ff;
    border-color: transparent;
    font-weight: 500;
}
.pos-product-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s;
}
.pos-product-box:hover{
    border-color:var(--primary);
}
.pos-product-box h6 {
    font-weight: normal;
    margin: 0 0 2px;
}
.pos-product-box h4{
    font-size:18px;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.pos-product-box .img {
    border: 1px solid #efefef;
    border-radius: 6px;
    overflow: hidden;
    height:100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pos-product-box .img img{
    max-width: 100%;
    max-height:100%;
}
.pos-product-list-wrap{
    max-height:80vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right:10px;
}
.sidebar-info-label {
    background: var(--light);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: normal;
    color: var(--dark);
}
html .card.sidebar-right-card {
    padding: 14px;
}
html .nav-tabs.payment-cart-tab {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-top: 12px;
    margin-bottom: 10px;
    border: 0;
}
html .nav-tabs.payment-cart-tab li {
    margin-right: 5px;
    flex-grow: 1;
    display: flex;
    min-width: 14%;
}
html .nav-tabs.payment-cart-tab li:last-child{
    margin-right:0;
}
html[lang="ar"] .nav-tabs.payment-cart-tab li:first-child{
    margin-right:0;
}
html[lang="ar"] .nav-tabs.payment-cart-tab li:last-child{
    margin-right:5px;
}
.payment-cart-tablink {
    border: 1px solid #efefef;
    padding: 8px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    font-size: 12px;
    font-weight: normal;
    color: var(--dark);
    transition: all 0.4s;
    line-height: 120%;
    width: 100%;
}
.payment-cart-tablink:hover{
    border-color:var(--primary);
}
.payment-cart-tablink.nav_active{
    color:#fff;
    background-color: var(--primary);
    border-color:var(--primary);
}
.payment-cart-tablink span{
    margin:auto;
}
.payment-cart-tablink img {
    width: 35px;
    height: 35px;
    display: block;
    min-width: 35px;
    margin: 0 auto 2px;
    transition: all 0.4s;
}
.payment-cart-tablink.nav_active img {
    filter:brightness(0) invert(1);
}
.couponfields-wrap{
    padding:10px;
    border-radius:8px;
    margin-bottom:10px;
    background-color:var(--primary);
    color:#fff;
}
.subtotla_table_item {
    font-size: 14px;
    margin-bottom: 5px;
}
.subtotla_table_item.subtotla_table_item_big{
    font-size:18px;
    color:var(--primary);
}
.min-cart-item {
    line-height: 120%;
    font-size: 13px;
    padding-bottom: 15px;
    padding-top: 15px;
    border-top: 3px solid var(--light);
    position: relative;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 15px;
    padding-right: 15px;
}
.min-cart-item .inner-row{
    padding-right:40px;
    position:relative;
    margin-bottom:10px;
}
.min-cart-item .btn.btn-icon.cart-item-remove {
    position: absolute;
    right: 0;
    top: 15px;
    border-radius: 20px;
    width: 24px;
    min-width: 24px;
    height: 24px;
    font-size: 22px;
    font-weight: normal;
}
.min-cart-item h6 {
    margin: 0;
    font-size: 13px;
    font-weight: normal;
}
.min-cart-item h4 {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
}
.min-cart-item .img img{
    display:block;
    width:100%;
    border:1px solid #ededed;
    border-radius: 6px;
}
.list-item.hold-list{
    margin-bottom: 1rem!important;
    background: #f4f6fb;
    border: 1px solid #f4f6fb;
    border-radius: 6px;
}
.list-item.hold-list:hover{
    border-color: var(--primary);
}
.tab-pane.fade.active.in{
    opacity: 1;
}
.card.combo-box-card {
    border: 1px solid var(--primary);
    box-shadow: 0 5px 0 0 var(--primary);
    text-align: center;
    padding: 15px;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition:all 0.4s;
    border-radius:10px;
}
.card.combo-box-card:hover{
    border-color:var(--dark);
    box-shadow: 0 0px 0 0 var(--dark);
    transform:translatey(5px);
}
.card.combo-box-card .combo-card-box-count {
    background: var(--light);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -10px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    font-size: 15px;
}
.card.combo-box-card h5 {
    margin: 0;
    font-size: 16px;
    text-transform: capitalize;
}
.check-buttons.select-table-labelbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
}
.check:checked ~ .check-buttons.checked-rpimary,
.check:checked ~ .check-buttons.select-table-labelbox{
    color: #fff;
    background-color: var(--primary);
}
.stepcheckbox-card .custom-control.custom-checkbox label {
    vertical-align: top;
}
.text-right{
    text-align:right;
}

/*RTL CSS*/
[dir="rtl"] .btn i,
[dir="rtl"] .btn svg {
    margin-right: 0;
    margin-left: 7px;
}
[dir="rtl"] .btn-icon i,
[dir="rtl"] .btn-icon svg {
    margin: 0;
}
[dir="rtl"] .select2-container--default .select2-selection--single {
    padding: 0 5px 0 35px;
}
[dir="rtl"] .field-icon .select2-container--default .select2-selection--single {
    padding-left: 15px;
    padding-right: 38px;
}
[dir="rtl"] .field-icon .icon {
    left: auto;
    right:0;
}
[dir="rtl"] .header-profile-name .btn .icon {
    margin-right: 0;
    margin-left: 10px;
}
[dir="rtl"] .header-profile-name .btn {
    padding-left: 5px;
    padding-right: 5px !important;
}
[dir="rtl"] .header-profile-name .btn .hprofile_arrow {
    margin-left: 0!important;
    margin-right: 1rem!important;
}
[dir="rtl"] .darshboard-counter {
    padding: 20px 20px 20px 90px;
}
[dir="rtl"] .darshboard-counter .icon {
    right: auto;
    left:0;
}
[dir="rtl"] .menu-sidebar {
    left: auto;
    right:0;
    border-right:0;
    border-left:1px solid var(--border-color);
}
[dir="rtl"] body {
    padding-left: 0;
    padding-right: 64px;
}
[dir="rtl"] header {
    padding-right: 84px;
    padding-left:var(--page-content-space);
}
[dir="rtl"] body.sidebar-collapsein .content {
    --sidebar-width:-230px;
    transform: translatex(calc(var(--sidebar-width) + 65px));
}
[dir="rtl"] body.sidebar-collapsein header {
    padding-left:var(--page-content-space);
    padding-right: calc(var(--sidebar-width) + var(--page-content-space));
}
[dir="rtl"] ul.menu-navigation > li > a:before {
    left: auto;
    right: 0;
    border-radius: 50px 0 0 50px;
    transform: translateX(120%);
}
[dir="rtl"] ul.menu-navigation > li > a[aria-expanded="true"]:before,
[dir="rtl"] ul.menu-navigation > li:hover > a:before,
[dir="rtl"] ul.menu-navigation > li.active > a:before {
    transform: translateX(0%);
}
[dir="rtl"] ul.menu-navigation > li > a > .text {
    margin-left: 0;
    margin-right: 10px;
}
[dir="rtl"] .filter-item-field label {
    margin-right: 0;
    margin-left: 5px;
}
html[dir="rtl"] .field-icon .form-control.form-control-sm,
html[dir="rtl"] .field-icon .form-select.form-select-sm {
    padding-left: 15px;
    padding-right: 34px;
}
[dir="rtl"] .text-start {
    text-align: right!important;
}
[dir="rtl"] .text-end {
    text-align: left!important;
}
[dir="rtl"] ul.pagination .page-item .page-link span {
    transform: rotate(180deg);
}
[dir="rtl"] header nav > ul > li + li {
    margin-left: 0;
    margin-right: 35px;
}
[dir="rtl"] .header-back-link .btn i {
    transform: rotate(180deg);
}
[dir="rtl"] .header-back-link {
    padding-left: 16px;
    padding-right: 0;
}
[dir="rtl"] .header-back-link:before {
    right:auto;
    left: 0;
}
[dir="rtl"] .me-auto {
    margin-left: auto!important;
    margin-right: 0!important;
}
[dir="rtl"] .ms-auto {
    margin-right: auto!important;
    margin-left: 0!important;
}
[dir="rtl"] .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
[dir="rtl"] .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
[dir="rtl"] .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
[dir="rtl"] .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-radius: 0 6px 6px 0;
}
[dir="rtl"] .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0;
    margin-right: -1px;
    border-radius: 6px 0 0 6px;
}
[dir="rtl"] .modal-header .btn-close {
    margin-right: auto;
    margin-left: 0;
}
html[dir="rtl"] .form-check {
    padding-left: 0;
    padding-right: 45px;
    position: relative;
}
html[dir="rtl"] .form-check .form-check-input {
    margin-left: 0;
    right: 0;
    left: auto;
    position: absolute
}
html[dir="rtl"] .form-switch.form-switch-2 .form-check-input {
    margin: 0 10px;
    position: relative;
}
html[dir="rtl"] .form-switch.form-switch-2 {
    padding-right:0;
}

html[dir="rtl"] .toast-container>div {
    padding-right: 50px;
    padding-left:15px;
    background-position: right 12px center;
}

.topbar-note {
    text-align: center;
    background: rgb(234, 104, 104);
    padding: 5px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    color: #fff;
    line-height: 20px;
}
.topbar-note.warning {
    background: rgb(237 167 101);
}
.topbar-note ~ .header-div header, .topbar-note ~ .header-div .menu-sidebar, .topbar-note ~ .content{
    margin-top: 30px;
}

ul.menu-navigation > li > a.disable{
    color: var(--bs-gray-500);
    pointer-events: none;
    cursor: none;
}
ul.menu-navigation > li > li:hover > a.disable, ul.menu-navigation > li.active > a.disable{
    color:var(--bs-cyan);
    background:var(--light);
}
.row.card-strash>* .darshboard-counter {
    margin-bottom: 0;
}
td .form-group {
    padding: 0;
}
[dir="rtl"] .ms-2 {
    margin-left: 0!important;
    margin-right: .5rem!important;
}
[dir="rtl"] label .float-end {
    float: left!important;
}
[dir="rtl"] .dt-filter-wrap .form-control {
    margin: 0 8px 0 0;
}
html[lang="ar"] .mx-icon-calendar, html[lang="ar"] .mx-icon-clear {
    left: 8px;
    right: auto;
}
html[lang="ar"] .form-control[type=file] {
    padding-right: 8px;
}
.dt-filter-wrap {
    flex-wrap: wrap;
}
.dataTables_wrapper > div {
    overflow-x: auto;
}
.modal-body .page-heading {
    display: none;
}
.modal-body .card {
    border: 0;
    padding: 0;
    box-shadow: 0 0 0 transparent;
}

.reportrange-text {
    line-height: 25px;
}
[dir="rtl"] td[align="left"] {
    text-align: right;
}
html select.form-control[multiple] {
    height: 100px;
    padding:0;
}
html select.form-control[multiple] option {
    padding: 5px 15px;
}
.page-heading span.badge {
    font-size: 15px;
}
[dir="rtl"] .product-price[align="right"] {
    text-align: left;
}
[dir="rtl"] .quickpanel {
    left: 0;
    right: auto;
}

/* Let's get this party started */
.customscroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
.customscroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

/* Handle */
.customscroll::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background:#b5bacb;
}

.customscroll::-webkit-scrollbar-thumb:window-inactive {
    background: #b5bacb;
}


[dir="rtl"] input[type="checkbox"], 
[dir="rtl"] input[type="radio"] {
    margin-right: 0;
    margin-left: 5px
}



@import url("responsive.css");
