#template-customizer .template-customizer-open-btn{
    display: none !important;
}
#main_table thead{
  background-color: #CB0017;
  color: #fff;
}
#main_table thead th{
  color: #fff;
  background: #F2203D;
}
#main_table tbody img{
  width:50px !important;
  height: 50px !important;
}
.card{
  overflow: hidden !important;
}
.submitBtn{
  background-color: #F2203D !important;
  color: #fff !important;
  width: 150px !important;
  height: 40px !important;
}

.coreBtn{
  background-color: #F2203D !important;
  color: #fff !important;
}

.theme-color{
  color: #F2203D !important;
}
/* .adminLogo img,.app-brand img{
  height:110px !important;
  width:110px !important;
 } */
.toast-success {
    background-color: #28a745; /* Your desired success color */
    color: #fff; /* Text color for the toast */
}

.modal-backdrop {
    display: none !important;
}
li,a{
  cursor: pointer !important;
}
.custom-success-badge {
    display: inline-block;
    padding: 0.25em 0.5em;
    font-size: 14px;
    font-weight: 700;
    color: #28a745; /* Green text color */
    background-color: #d4edda; /* Light green background color */
    border-radius: 10px; /* Rounded corners */
}

.custom-danger-badge {
    display: inline-block;
    padding: 0.25em 0.5em;
    font-size: 14px;
    font-weight: 700;
    color: red; /* Red text color */
    background-color: #f8d7da; /* Light red background color */
    border-radius: 10px; /* Rounded corners */
}



/* Styles for the toggle button */
.toggle-button {
    display: flex;
    align-items: center;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #28a745;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #28a745;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Style for the active/inactive label */
  #toggleStatus {
    margin-left: 10px;
  }
  
.statusRow{
    width: 100% !important;
    display: flex;
    justify-content: space-around;
}

.card{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important
}

.brnache-dropdown li{
     display: flex;
     align-items: center;
     /* padding: 10px; */
}
/* check box css */
.checkBoxArea{
  display:flex !important
}
.checkBoxArea input[type="checkbox"] {
  display: none;
}

/* Define the custom checkbox style */
.checkBoxArea .custom-checkbox {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 3px;
  position: relative;
  border: 1px solid red;
}

/* Style the custom checkbox when checked */
.checkBoxArea input[type="checkbox"]:checked + .custom-checkbox::before {
  content: '\2713'; /* Unicode checkmark character */
  font-size: 16px;
  color:red;
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Style the custom checkbox label */
.checkBoxArea .checkbox-label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

/* toggle Button */



/* Style for the input field */
.locationSearch {
  width: 100%;
  padding: 6px;
  font-size: 16px;
  border: 1px solid #A8A5B1;
  border-radius: 5px;
}

/* Style for the autocomplete results */
.autocomplete-results {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  /* max-height: 150px; */
  left: 25px;
  right: 25px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

/* Style for individual autocomplete items */
.autocomplete-item {
  padding: 10px;
  cursor: pointer;
}

/* Highlight the selected item */
.autocomplete-item.active {
  background-color: #f0f0f0;
}



/* loader */

/* Loader Styles */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #F2203D;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

.saveBtn .loader{
  width: 18px !important;
  height: 18px !important;
  color: #f3f3f3 !important;
  border: 2px dotted #f3f3f3;
  display: none;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide loader when content is loaded */
.loaded .loader-wrapper {
  display: none;
}
.loader-wrapper.loaded {
  display: none;
}

.badge-danger{
  background-color: #E02E2A;
  color: #fff
}
.badge-success{
  background-color: #3FE91B;
  color: #fff
}





.checkbox-container {
  display: block;
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
}

/* Hide the default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -6px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid #D2D1D6;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ffffff;
  border: 1px solid #D2D1D6;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #CB0017;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#selected{
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100% !important;
}
.deleteMultiple{
  margin-left: 30px;
}



/* custome  radio  */

:root {
  --color1: #f4f4f4;
  --color2: #F2203D;
}
.radio {
  margin: 0.5rem;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio input[type="radio"] + .radio-label:before {
  content: '';
  background: var(--color1);
  border-radius: 100%;
  border: 1px solid darken(var(--color1), 25%);
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em; 
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.radio input[type="radio"]:checked + .radio-label:before {
  background-color: var(--color2);
  box-shadow: inset 0 0 0 4px var(--color1);
}

.radio input[type="radio"]:focus + .radio-label:before {
  outline: none;
  border-color: var(--color2);
}

.radio input[type="radio"]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px var(--color1);
  border-color: darken(var(--color1), 25%);
  background: darken(var(--color1), 25%);
}

.radio input[type="radio"] + .radio-label:empty:before {
  margin-right: 0;
}




/* 3 dotes drop down */


.orderTbDropdown {
  position: relative;
  display: inline-block;
  width: 100% !important;
}

.dropbtn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
  border-radius: 4px;
}

.orderTbDropdown .dropdown-content .dropdown-item {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  background: none;
  border: none;
  width: 90%;
  text-align: left;
  cursor: pointer;
  text-align: center;
}

.dropdown-content .dropdown-item:hover {
  background-color: #f1f1f1;
}

.orderTbDropdown:hover .dropdown-content {
  display: block;
}
.btn-loader{
  width: 18px !important;
  height: 18px !important;
  border: 3px dotted !important;
}

/* Force light red gradient for sidebar active menu items */
.bg-menu-theme .menu-item.active > .menu-link,
.bg-menu-theme.menu-vertical .menu-item.active > .menu-link:not(.menu-toggle),
[dir=rtl] .bg-menu-theme.menu-vertical .menu-item.active > .menu-link:not(.menu-toggle),
.bg-menu-theme.menu-horizontal .menu-inner > .menu-item.active > .menu-link.menu-toggle,
[dir=rtl] .bg-menu-theme.menu-horizontal .menu-inner > .menu-item.active > .menu-link.menu-toggle {
  background: linear-gradient(72.47deg, #F2203D 22.16%, #F2203D 76.47%) !important;
  color: #ffffff !important;
  box-shadow: 0px 2px 6px 0px rgba(255, 107, 107, 0.3) !important;
}

/* Force light red color for all menu active states */
.bg-menu-theme .menu-item.active > .menu-link,
.bg-menu-theme .menu-item.open:not(.menu-item-closing) > .menu-toggle,
.bg-menu-theme .menu-inner .menu-item.open > .menu-link.menu-toggle,
.bg-menu-theme .menu-inner .menu-item.active > .menu-link.menu-toggle {
  background: linear-gradient(72.47deg, #F2203D 22.16%, #F2203D 76.47%) !important;
  color: #ffffff !important;
  box-shadow: 0px 2px 6px 0px rgba(255, 107, 107, 0.3) !important;
}

/* Override any existing gradients */
.bg-menu-theme.menu-horizontal .menu-item.active > .menu-link:not(.menu-toggle) {
  background: #f4f3fe !important;
  color: #F2203D !important;
}


/* badge button */

.badge-btn {
  background: linear-gradient(to bottom, rgba(37,130,188,1) 0%,rgba(41,137,216,1) 32%,rgba(41,137,216,1) 42%,rgba(175,224,234,1) 100%);
  /* width: 60px;
  height: 60px; */
  border-radius: 10px;
  border: none;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.badge-btn:before {
  content: attr(data-count);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  display: block;
  border-radius: 50%;
  background: rgb(67, 151, 232);
  border: 1px solid #FFF;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  color: #FFF;
  position: absolute;
  top: -7px;
  left: -7px;
}

.badge-btn.badge-top-right:before {
  left: auto;
  right: -7px;
}

.badge-btn.badge-bottom-right:before {
  left: auto;
  top: auto;
  right: -7px;
  bottom: -7px;
}

.badge-btn.badge-bottom-left:before {
  top: auto;
  bottom: -7px;
}

.select2-selection__choice{
  height: 25px !important;
  display: flex;
  align-items: center;
}




.dropdown-menu input[type="checkbox"] {
  width: 20px; 
  height: 20px; 
  -webkit-appearance: none; 
  -moz-appearance: none; 
  appearance: none; 
  border: 2px solid red; 
  border-radius: 3px; 
  outline: none; 
  cursor: pointer; 
  margin-right: 10px;
  
}

.dropdown-menu input[type="checkbox"]:checked {
  background-color: red; 
  position: relative;
}

.dropdown-menu input[type="checkbox"]:checked::after {
  content: '\2713'; 
  color: white; 
  font-size: 20px; 
  position: absolute; 
  left: 0px; 
  top: -7px; 
}

/* DataTables - Align search to the right globally */
.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.dataTables_wrapper .dataTables_filter label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}