@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");


:root {
  --main-color: #00b27f;
  --main-color-80: #266e54;
  --main-color-75: #e3f5ec;
  --main-light-color: #EBF1FF;
  --link-color: #004fff;
  --theme-bg-color: #fff;
  --theme-text-color: #0c0c0c;
  --text-color: #0c0c0c;
  --bg-color: #f5f6f7;
 --brand-ffamily: "Space Grotesk", serif;
  --border-radius: 6px;
  --border-radius-input: 6px;
  --border-radius-card: 6px;
  --bs-btn-disabled-btns:#59CDAC;
        --caution-color: #FF3333;
  --caution-bg-color:#FFF5F5;
  --itemgroup-active-status-color: #0cbd38;
  --itemgroup-bg-active-status-color: #d0fbdf;
  --itemgroup-inactive-status-color: #ff6b00;
  --itemgroup-bg-inactive-status-color: #ffe1cc;
  --warning-bg:#fbd8d8ff;

}

body {
  /* line-height: 1.6; */
  color: var(--text-color);
  overflow-x: hidden;
  font-size: 1rem;
  scroll-behavior: smooth;
  font-family: var(--brand-ffamily) !important;
  transition: all 0.3s ease;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-color);
  letter-spacing: 0px;
}

/* *{
  scrollbar-width: thin;
  scrollbar-color: var(--main-color) #f0f0f0;

} */

.custom-scroll-container {
  max-height: 300px;
  overflow-y: scroll;
  display: block !important;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

html {
  font-size: 14px;
}

:focus {
  outline: 0;
  text-decoration: none;
}

a {
  text-decoration: none;
  color: var(--main-color);
}

a:hover {
  color: var(--main-color);
  text-decoration: none;
}
.text-primary {
  color: var(--main-color) !important;
}
.form-check-20 input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.form-check-25 input[type="checkbox"] {
  width: 25px;
  height: 25px;
}
.form-check-30 input[type="checkbox"] {
  width: 30px;
  height: 30px;
}
.td-gap td {
  padding-bottom: 10px;
}
.form-check.cutome-check {
  gap: 10px;
  display: flex;
  align-items: center;
}
.form-check.cutome-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 3px;
  border: 1px solid #e5e7e8;
  margin: 0;
  padding: 0;
}

a:not([href]) {
  color: inherit;
}

.c-pointer {
  cursor: pointer;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.stretch {
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

.stretch.stretch-full {
  height: calc(100% - 24px);
}

.stretch.stretch-onethird {
  height: calc(75% - 24px);
}

.stretch.stretch-half {
  height: calc(50% - 24px);
}

.stretch.stretch-quarter {
  height: calc(25% - 24px);
}

.nxl-container {
  position: relative;
  top: 79px;
  margin-left: 280px;
  /* width: calc(100% - 280px); */
  min-height: calc(100vh - 79px);
  transition: all 0.3s ease;
}

.nxl-container .nxl-content {
  border-left: 1px solid rgba(229, 231, 232, 1);
  border-top: 1px solid rgba(229, 231, 232, 1);
}

.nxl-container .nxl-content.nxl-full-content .main-content {
  padding: 0;
}

.nxl-container .nxl-content .main-content {
  /* overflow-x: hidden; */
  padding: 18px 30px;
}

.nxl-container .nxl-content .main-content > .row {
  margin-top: 0px !important;
}

.nxl-container .page-header + .nxl-content {
  padding-top: 95px;
}

.minimenu .nxl-container {
  margin-left: 80px;
}

.page-header .breadcrumb {
  padding: 0;
  display: inline-flex;
  margin-bottom: 0;
  background: 0 0;
  font-size: 13px;
  font-weight: 800;
  row-gap: 4px;
}

.page-header .breadcrumb .breadcrumb-item:hover {
  color: var(--main-color);
}

.page-header .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  position: relative;
  top: 2px;
}

.page-header .breadcrumb .breadcrumb-item {
  color: var(--text-color);
  font-weight: 400;
  font-size: 14px;
}

.page-header .breadcrumb .breadcrumb-item a {
  color: var(--text-color);
}

.page-header .breadcrumb .breadcrumb-item:last-child {
  opacity: 0.75;
  font-weight: 500;
  color: var(--main-color);
}

.page-header .breadcrumb svg {
  width: 14px;
  height: 14px;
  vertical-align: baseline;
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  transition: filter 0.15s linear;
  width: 20px;
  height: 20px;
}

.hamburger.is-active .hamburger-inner {
  background-color: var(--theme-text-color);
}

.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
  background-color: var(--theme-text-color);
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 18px;
  height: 2px;
  background-color: var(--theme-text-color);
  border-radius: var(--border-radius-input);
  position: absolute;
  transition: transform 0.15s ease;
}

.hamburger-inner::after,
.hamburger-inner::before {
  width: 18px;
  height: 2px;
  background-color: var(--theme-text-color);
  border-radius: var(--border-radius-input);
  position: absolute;
  transition: transform 0.15s ease;
}

.hamburger-inner::after,
.hamburger-inner::before {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -6px;
}

.hamburger-inner::after {
  bottom: -6px;
}

.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(4px, 2px, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(4px, -2px, 0) rotate(-45deg) scale(0.7, 1);
}

.ps {
  touch-action: auto;
  overflow-anchor: none;
  overflow: hidden !important;
}

.ps__rail-x {
  display: none;
  opacity: 0;
  height: 15px;
  bottom: 0;
  position: absolute;
  transition: background-color 0.2s linear, opacity 0.2s linear;
}

.ps__rail-y {
  right: 0;
  opacity: 0;
  width: 15px;
  display: none;
  position: absolute;
  transition: background-color 0.2s linear, opacity 0.2s linear;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y {
  opacity: 0.6;
}

.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y {
  opacity: 0.6;
}

.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-x:focus,
.ps .ps__rail-x:hover,
.ps .ps__rail-y.ps--clicking,
.ps .ps__rail-y:focus,
.ps .ps__rail-y:hover {
  opacity: 0.9;
  background-color: #eee;
}

.ps__thumb-x {
  height: 6px;
  bottom: 2px;
  border-radius: var(--border-radius-input);
  position: absolute;
  background-color: #aaa;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
}

.ps__thumb-y {
  width: 6px;
  right: 2px;
  position: absolute;
  border-radius: var(--border-radius-input);
  background-color: #aaa;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
}

.ps__rail-x.ps--clicking .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x:hover > .ps__thumb-x {
  height: 10px;
  background-color: #999;
}

.ps__rail-y.ps--clicking .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y:hover > .ps__thumb-y {
  width: 10px;
  background-color: #999;
}

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

.navbar-content {
  position: relative;
}

.ps__rail-y {
  z-index: 5;
}

.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-x:focus,
.ps .ps__rail-x:hover,
.ps .ps__rail-y.ps--clicking,
.ps .ps__rail-y:focus,
.ps .ps__rail-y:hover {
  background: 0 0;
}

.ps__thumb-y {
  background: #ced4da;
}

.ps__rail-y.ps--clicking .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y:hover > .ps__thumb-y {
  background: #91a1b6;
}
.nxl-header .header-wrapper .nxl-navigation-toggle svg {
  display: block;
}

.nxl-header {
  right: 0;
  z-index: 1030;
  position: fixed;
  left: 280px;
  color: #eaebef;
  background: var(--theme-bg-color);
  min-height: 72px;
}

.nxl-header .header-wrapper {
  display: flex;
  min-height: 80px;
  align-items: center;
  padding: 0 30px;
  border-bottom: 1px solid rgba(229, 231, 232, 1);
}

.nxl-header .header-wrapper ul {
  margin-bottom: 0;
  display: inline-flex;
}

.nxl-header .header-wrapper .nxl-navigation-toggle {
  position: absolute;
  left: 0;
  transform: translateX(-50%);
}
.nxl-header .header-wrapper .nxl-navigation-toggle button {
  max-width: 24px;
  min-width: 24px;
  max-height: 24px;
  min-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0px 0px 5px #cccccc;
}

/* .nxl-header .header-wrapper .nxl-h-item {
  min-height: 79px;
  display: flex;
  align-items: center;
  position: relative;
} */

.nxl-header .header-wrapper .nxl-h-item .user-mode {
  position: relative;
  margin: 0;
}

.nxl-header .header-wrapper .nxl-h-item .user-mode .user-mode-status {
  width: 18px;
  height: 18px;
  background: rgba(61, 161, 114, 1);
  border-radius: 100px;
  border: 3px solid #fff;
  position: absolute;
  right: -4px;
  bottom: -4px;
}

.nxl-header .header-right button {
  color: var(--theme-text-color);
  font-size: 16px;
  font-weight: 400;
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px !important;
  text-transform: capitalize;
  background: none;
  border: none;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
}
.nxl-header-search button:hover {
  background: rgba(235, 241, 255, 1);
}
/* 
.nxl-header .header-wrapper .nxl-head-link {
  margin-left: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 50px;
  min-width: 40px;
  min-height: 40px;
  padding: 8px;
} */

.nxl-header .header-wrapper .nxl-head-link > i {
  font-size: 20px;
}

.nxl-header .header-wrapper .nxl-head-link.active,
.nxl-header .header-wrapper .nxl-head-link:active,
.nxl-header .header-wrapper .nxl-head-link:focus,
.nxl-header .header-wrapper .nxl-head-link:hover {
  color: #000;
  text-decoration: none;
  /* background: rgba(235, 241, 255, 1); */
}

.nxl-header .header-wrapper .nxl-head-link.active .hamburger .hamburger-inner,
.nxl-header .header-wrapper .nxl-head-link:active .hamburger .hamburger-inner,
.nxl-header .header-wrapper .nxl-head-link:focus .hamburger .hamburger-inner,
.nxl-header .header-wrapper .nxl-head-link:hover .hamburger .hamburger-inner {
  background-color: var(--main-color);
}

.nxl-header
  .header-wrapper
  .nxl-head-link.active
  .hamburger
  .hamburger-inner::after,
.nxl-header
  .header-wrapper
  .nxl-head-link.active
  .hamburger
  .hamburger-inner::before,
.nxl-header
  .header-wrapper
  .nxl-head-link:active
  .hamburger
  .hamburger-inner::after,
.nxl-header
  .header-wrapper
  .nxl-head-link:active
  .hamburger
  .hamburger-inner::before,
.nxl-header
  .header-wrapper
  .nxl-head-link:focus
  .hamburger
  .hamburger-inner::after,
.nxl-header
  .header-wrapper
  .nxl-head-link:focus
  .hamburger
  .hamburger-inner::before,
.nxl-header
  .header-wrapper
  .nxl-head-link:hover
  .hamburger
  .hamburger-inner::after,
.nxl-header
  .header-wrapper
  .nxl-head-link:hover
  .hamburger
  .hamburger-inner::before {
  background-color: var(--main-color);
}

.nxl-header .header-wrapper .nxl-head-link .nxl-h-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 50px;
  padding: 5px 10px;
  min-width: 25px;
  min-height: 18px;
}

.nxl-header .header-wrapper .nxl-h-dropdown.nxl-user-dropdown {
  min-width: 185px;
  border: 1px solid rgba(229, 231, 232, 1);
  padding: 16px;
}

.nxl-header .header-wrapper .nxl-level-menu {
  position: relative;
}

.nxl-header .header-wrapper .nxl-level-menu:hover > .dropdown-menu {
  left: 100%;
  display: block;
  top: 0 !important;
  transition: all 0.3s ease-in-out;
}

.nxl-header .header-wrapper .nxl-mega-menu {
  position: static;
  transition: all 0.3s ease-in-out;
}

.nxl-header .header-wrapper .nxl-header-search .nxl-search-dropdown {
  width: 425px;
  padding-top: 0;
  overflow-x: hidden;
  max-height: calc(100vh - 150px);
  box-shadow: none;
  border: 1px solid rgba(229, 231, 232, 1);
  border-radius: var(--border-radius);
}

.nxl-header
  .header-wrapper
  .nxl-header-search
  .nxl-search-dropdown
  .search-form {
  padding: 8px 10px;
}

.nxl-header
  .header-wrapper
  .nxl-header-search
  .nxl-search-dropdown
  .search-form
  .input-group-text,
.nxl-header
  .header-wrapper
  .nxl-header-search
  .nxl-search-dropdown
  .search-form
  .search-input-field {
  border: none;
  padding: 8px 12px;
  background: #fff;
}

.nxl-header
  .header-wrapper
  .nxl-header-search
  .nxl-search-dropdown
  .search-form
  .input-group-text:active,
.nxl-header
  .header-wrapper
  .nxl-header-search
  .nxl-search-dropdown
  .search-form
  .input-group-text:focus,
.nxl-header
  .header-wrapper
  .nxl-header-search
  .nxl-search-dropdown
  .search-form
  .search-input-field:active,
.nxl-header
  .header-wrapper
  .nxl-header-search
  .nxl-search-dropdown
  .search-form
  .search-input-field:focus {
  box-shadow: none;
}

.nxl-header
  .header-wrapper
  .nxl-header-search
  .nxl-search-dropdown
  .search-form
  .input-group-text
  .btn-close {
  opacity: 1;
  position: relative;
  background: 0 0;
}

.nxl-header
  .header-wrapper
  .nxl-header-search
  .nxl-search-dropdown
  .search-form
  .input-group-text
  .btn-close:after {
  content: "Esc";
  position: absolute;
  top: 0;
  right: 0;
  height: 1.35rem;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 9px;
  color: var(--text-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  border-radius: var(--border-radius-input);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nxl-header
  .header-wrapper
  .nxl-header-search
  .nxl-search-dropdown
  .search-items-wrapper {
  max-height: 415px;
}

.nxl-header .header-wrapper .nxl-header-search .nxl-head-link svg {
   color: #000;
}

.nxl-header .header-wrapper .nxl-notifications-menu {
  padding: 0;
  min-width: 20rem;
}

.nxl-header .header-wrapper .nxl-notifications-menu .notifications-head {
  padding: 20px;
  border-radius: 2px 2px 0 0;
  border-bottom: 1px solid #e5e7eb;
}

.nxl-header .header-wrapper .nxl-notifications-menu .notifications-item {
  display: flex;
  cursor: pointer;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.nxl-header
  .header-wrapper
  .nxl-notifications-menu
  .notifications-item
  + .notifications-item {
  border-top: 1px dashed #e5e7eb;
}

.nxl-header .header-wrapper .nxl-notifications-menu .notifications-item img {
  width: 40px;
  height: 40px;
}

.nxl-header
  .header-wrapper
  .nxl-notifications-menu
  .notifications-item
  .notifications-desc {
  flex: 1;
}

.nxl-header
  .header-wrapper
  .nxl-notifications-menu
  .notifications-item
  .notifications-desc
  .text-body {
  color: var(--text-color) !important;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 400;
}
.nxl-header
  .header-wrapper
  .nxl-notifications-menu
  .notifications-item
  .font-small {
  font-size: 14px;
  font-weight: 500;
}

.nxl-header
  .header-wrapper
  .nxl-notifications-menu
  .notifications-item
  .notifications-date {
  font-size: 11px;
}

.nxl-header .header-wrapper .nxl-notifications-menu h1 {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #f1f1f1;
}
.nxl-header .header-wrapper .nxl-notifications-menu h1 a {
  color: #f04438;
}

.nxl-header .header-wrapper .nxl-notifications-menu .showBtn {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.nxl-header .header-wrapper .user-avtar {
  width: 40px;
  min-width: 40px;
  /* margin-right: 15px; */
  border-radius: 50%;
}

html.minimenu .nxl-header {
  left: 80px;
}

.nxl-navigation {
  top: 0;
  bottom: 0;
  z-index: 1026;
  position: fixed;
  background: var(--theme-bg-color);
  width: 280px;
  transition: all 0.3s ease;
  /* border-right: 1px solid rgba(229, 231, 232, 1); */
}

.nxl-navigation .m-header {
  z-index: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  padding: 16px 20px;
  align-items: center;
  min-height: 72px;
  background: var(--theme-bg-color);
}

.nxl-navigation .m-header .logo-sm {
  display: none;
}

.nxl-navigation .navbar-content {
  padding: 24px 20px;
  position: relative;
  height: calc(100vh - 72px);
  max-height: calc(100vh - 72px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(224, 226, 231, 1) #fff;
}

.nxl-navigation .navbar-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.main.nxl-container .nxl-content {
  border-left: 1px solid #e5e7eb;
  /* border-right:1px solid #e5e7eb */
}

/* .nxl-navigation .navbar-content .nxl-micon {
  margin-right: 12px; 
   display: inline-block; 
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
} */

.nxl-navigation .navbar-content .nxl-micon i {
  font-size: 18px;
}

.nxl-navigation .navbar-content .nxl-link {
  display: block;
  /* line-height: 1.5; */
  padding: 8px 12px;
  font-size: 1rem;
  color: var(--theme-text-color);
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  width: 100%;
  white-space: pre;
}

.nxl-navigation:hover .navbar-content .nxl-link {
  width: 100% !important;
}

.nxl-navigation .navbar-content .nxl-link.active-sidebar,
.nxl-navigation .navbar-content .nxl-link:hover {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.nxl-navigation .navbar-content .nxl-link.active-sidebar .nxl-micon i,
.nxl-navigation .navbar-content .nxl-link:hover .nxl-micon i {
  color: var(--text-color);
  transition: all 0.3s ease;
}

.nxl-navigation .navbar-content .nxl-arrow {
  float: right;
  /* transition: all 0.2s ease-in-out; */
  position: absolute;
  right: 10px;
}

.nxl-navigation .navbar-content .nxl-badge {
  margin-left: 8px;
}

.nxl-navigation .navbar-content .nxl-submenu .nxl-link {
  font-size: 0.95rem;
  padding: 10px 20px;
}

.nxl-navigation .navbar-content .nxl-submenu .nxl-submenu .nxl-link {
  margin-left: 45px !important;
}

.nxl-navigation
  .navbar-content
  .nxl-submenu
  .nxl-submenu
  .nxl-submenu
  .nxl-link {
  margin-left: 55px !important;
}

.nxl-navigation .navbar-content .nxl-item.active-sidebar > .nxl-link,
.nxl-navigation .navbar-content .nxl-item:hover > .nxl-link {
  color: #ffffff;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}

.nxl-navigation
  .navbar-content
  .nxl-item.active-sidebar
  > .nxl-link
  .nxl-micon
  svg
  path,
.nxl-navigation
  .navbar-content
  .nxl-item:hover
  > .nxl-link
  .nxl-micon
  svg
  path {
  stroke: #ffffff;
  transition: all 0.3s ease;
}

.nxl-navigation
  .navbar-content
  .nxl-navbar
  > .nxl-item.active-sidebar
  > .nxl-link,
.nxl-navigation .navbar-content .nxl-navbar > .nxl-item:hover > .nxl-link {
  color: #ffffff;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}

.nxl-navigation .navbar-content .nxl-navbar>.nxl-item.active-sidebar:has(.nxl-submenu)>.nxl-link {
    background-color: var(--main-light-color);
  color: var(--text-color);
}

.nxl-navigation .navbar-content .nxl-navbar>.nxl-item.active-sidebar:has(.nxl-submenu) .nxl-link svg path {
   stroke: var(--text-color);
}

.nxl-navigation
  .navbar-content
  .nxl-hasmenu-sidebar.active-sidebar
  > .nxl-submenu {
  display: block;
  margin: 0 15px;
}

.nxl-navigation .navbar-content .nxl-hasmenu-sidebar.active-sidebar>.nxl-link>.nxl-arrow {
  transform: rotate(270deg);
}

.nxl-navigation .navbar-content 
  .nxl-navbar > .nxl-item.active-sidebar:has(.nxl-submenu) 
  > .nxl-link .nxl-arrow i {
  color: var(--main-color);
}

.nxl-navigation .navbar-content .card {
  margin: 20px;
  color: var(--text-color);
  background: #eff0f6;
  border-color: #e5e7eb;
}

.nxl-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}

html:not(.minimenu) .nxl-navigation .nxl-link {
  /* margin: 1rem 15px; */
  border-radius: var(--border-radius-input);
}

html:not(.minimenu) .nxl-navigation .nxl-submenu {
  position: relative;
}

html:not(.minimenu)
  .nxl-navigation
  .nxl-submenu
  .nxl-submenu
  > .nxl-item:before {
  left: 60px;
}

html:not(.minimenu)
  .nxl-navigation
  .nxl-submenu
  .nxl-submenu
  .nxl-submenu
  > .nxl-item:before {
  left: 80px;
}

html.minimenu .nxl-navigation {
  width: 80px;
  transition: all 0.3s ease;
}

html.minimenu .nxl-navigation .logo-sm {
  width: 39px;
  display: block;
  transition: all 0.3s ease;
}

html.minimenu .nxl-navigation .card,
html.minimenu .nxl-navigation .logo-lg,
html.minimenu .nxl-navigation .nxl-arrow,
html.minimenu .nxl-navigation .nxl-mtext {
  display: none;
  transition: all 0.3s ease;
  white-space: pre;
}

html.minimenu .nxl-navigation .navbar-content {
  width: 100px;
  transition: all 0.3s ease;
}

.nxl-navigation .navbar-content .nxl-navbar .nxl-item {
  margin: 8px 0 0 0;
}

html.minimenu .nxl-navigation .navbar-content .nxl-navbar .nxl-link {
  /* margin: 0 20px;
  padding: 12px 20px; */
  border-radius: var(--border-radius-input);
  width: 40px;
}

html.minimenu
  .nxl-navigation
  .navbar-content
  .nxl-hasmenu-sidebar.active-sidebar
  > .nxl-submenu {
  display: none;
}

html.minimenu .nxl-navigation:hover .navbar-content {
  position: absolute !important;
  width: 280px;
  background-color: var(--theme-bg-color);
  border-right: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

html.minimenu .nxl-navigation:hover .navbar-content .card,
html.minimenu .nxl-navigation:hover .navbar-content .nxl-arrow,
html.minimenu .nxl-navigation:hover .navbar-content .nxl-caption,
html.minimenu .nxl-navigation:hover .navbar-content .nxl-mtext {
  display: inline-block;
  transition: all 0.1s ease;
}

html.minimenu
  .nxl-navigation:hover
  .navbar-content
  .nxl-submenu
  .nxl-submenu
  .nxl-link {
  margin-left: 65px !important;
}

html.minimenu
  .nxl-navigation:hover
  .navbar-content
  .nxl-submenu
  .nxl-submenu
  .nxl-submenu
  .nxl-link {
  margin-left: 80px !important;
}

html.minimenu
  .nxl-navigation:hover
  .navbar-content
  .nxl-hasmenu-sidebar.active-sidebar
  > .nxl-submenu {
  display: block;
}

.dropdown-menu {
  padding: 15px 0;
  border: 1px solid rgba(229, 231, 232, 1);
  box-shadow: 0 10px 24px 0 rgba(62, 57, 107, 0.18);
}

.nxl-header .dropdown-menu {
  animation: 0.4s ease-in-out 0s normal forwards 1 fadein;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.dropdown .dropdown-menu {
  width: 225px;
}

.dropdown .dropdown-menu .dropdown-item {
  margin: 0 0 8px 0;
  padding: 8px;
  color: rgba(25, 27, 28, 1);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: var(--border-radius-input);
  transition: all 0.3s ease;
  width: -webkit-fill-available;
}

.dropdown .dropdown-menu .dropdown-item.active,
.dropdown .dropdown-menu .dropdown-item:active,
.dropdown .dropdown-menu .dropdown-item:focus,
.dropdown .dropdown-menu .dropdown-item:hover {
  color: #fff;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}

.dropdown .dropdown-menu .dropdown-item:hover svg {
  color: #fff;
}

.nxl-header .header-wrapper .nxl-h-dropdown.dropdown-menu-end {
  right: 0 !important;
  left: auto !important;
}

.dropdown .dropdown-menu .dropdown-item i {
  font-size: 16px;
  margin-right: 12px;
}

.custom-file,
.custom-select,
.form-control,
.form-select,
input {
  color: var(--text-color);
  padding: 10px 12px;
  border: 1px solid rgba(202, 207, 209, 1);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
}

.custom-file.active,
.custom-file.focus,
.custom-file:active,
.custom-file:focus,
.custom-select.active,
.custom-select.focus,
.custom-select:active,
.custom-select:focus,
.form-control.active,
.form-control.focus,
.form-control:active,
.form-control:focus,
.form-select.active,
.form-select.focus,
.form-select:active,
.form-select:focus,
input.active,
input.focus,
input:active,
input:focus {
  outline: 0;
  color: #283c50;
  /* border:1px solid var(--main-color) !important; */
  box-shadow: none !important;
}

.custom-file::-moz-placeholder,
.custom-select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
input::-moz-placeholder,
select::-moz-placeholder {
  color: rgba(123, 135, 140, 1) !important;
}

.custom-file::placeholder,
.custom-select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
input::placeholder,
select::placeholder {
  color: rgba(123, 135, 140, 1) !important;
}

.custom-file::-ms-placeholder,
.custom-select::-ms-placeholder,
.form-control::-ms-placeholder,
.form-select::-ms-placeholder,
input::-ms-placeholder,
select::-ms-placeholder {
  color: rgba(123, 135, 140, 1) !important;
}

.custom-file::-moz-placeholder,
.custom-select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
input::-moz-placeholder {
  color: rgba(123, 135, 140, 1) !important;
}

.custom-file::-webkit-placeholder,
.custom-select::-webkit-placeholder,
.form-control::-webkit-placeholder,
.form-select::-webkit-placeholder,
input::-webkit-placeholder,
select::-webkit-placeholder {
  color: rgba(123, 135, 140, 1) !important;
}

.form-select {
  color: var(--text-color);
  /* background-size: 10px; */
  filter: invert(0);
}

.form-select .form-select-sm,
.form-select.form-select-sm {
  background-size: 6px;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  box-sizing: border-box;
}

.form-switch .form-check-input:checked {
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.pace {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  top: 0;
  right: 100%;
  width: 100%;
  height: 3px;
  z-index: 2000;
  position: fixed;
  background: #3454d1;
}
.mega-menu > button.btn {
  flex-direction: column;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  border: 0 !important;
}

.mega-menu > button.btn span + span {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(123, 135, 140, 1);
}

.header-wrapper .mega-menu > button.btn {
  padding: 0;
}

.header-wrapper .mega-menu > button.btn svg {
  color: var(--text-color);
}

#mega-menu-dropdown {
  width: 510px;
}

#mega-menu-dropdown .mega-menu-body .has-search .form-control {
  height: 36px;
  width: 200px;
  padding: 8px 12px 9px 40px;
}

#mega-menu-dropdown .mega-menu-body .has-search .input-addon {
  top: 4px;
}

#mega-menu-dropdown .mega-menu-body .scrollbar-container ul {
  width: 100%;
  padding: 16px 0;
}

.nxl-header .header-wrapper .nxl-h-dropdown {
  width: 225px;
  top: 58px !important;
  transition: all 0.3s;
}
.nxl-notifications-menu {
  width: 350px !important;
}

.datePickerVIew {
  display: flex;
  height: 40px;
  align-items: center;
  border: 1px solid rgba(202, 207, 209, 1);
  border-radius: var(--border-radius-input);
}

div.multi-select-dropdown .arrow {
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  height: auto;
  display: flex;
  align-items: center;
  font-size: 1rem !important;
  color: var(--main-color);
}

div.multi-select-dropdown ul.dropdown-list li label {
  padding: 8px 15px;
  font-size: 0.875rem;
  font-weight: 400;
}

div.multi-select-dropdown ul.dropdown-list li input {
  margin-right: 15px;
  width: 16px;
  height: 16px;
}

.multi-select-dropdown ul.dropdown-list li:hover {
  color: #ffffff;
  background-color: var(--main-color);
  border-radius: var(--border-radius);
}

div.multi-select-dropdown input::placeholder {
  color: var(--main-color) !important;
  font-weight: 500;
}

.datePickerVIew input {
  padding: 6px 12px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid #cacfd1;
  border-right: 1px solid #cacfd1;
  border-radius: 0;
  font-family: var(--brand-ffamily);
  font-weight: 500;
  min-height: 38px;
  min-width: 225px;
  text-align: center;
}

.datePickerVIew p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  background: #ffffff;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 1px solid #cacfd1;
  border-right: 1px solid #cacfd1;
  padding: 10px;
}

.datePickerVIew span {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 21px;
  justify-content: center;
}

.datePickerVIew span i {
  font-size: 20px;
  color: var(--text-color);
}

.multi-select-dropdown .input-with-icon {
  width: 100%;
}

#mega-menu-dropdown {
  padding: 0;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(224, 226, 231, 1);
  border-radius: var(--border-radius);
}

#mega-menu-dropdown .mega-menu-title {
  margin: 0 24px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px -1px 0px 0px rgba(229, 231, 232, 1) inset;
}

#mega-menu-dropdown .mega-menu-title h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(49, 54, 56, 1);
}

#mega-menu-dropdown .mega-menu-title .close-btn {
  padding: 0;
  background: none;
  border: none;
}

#mega-menu-dropdown .mega-menu-title .close-btn .bi {
  color: rgba(49, 54, 56, 1);
  font-size: 18px;
}

#mega-menu-dropdown .mega-menu-body {
  padding: 16px 24px;
}

#mega-menu-dropdown .list-group-item {
  border: 0;
  padding: 8px 0;
  margin-bottom: 4px;
  border-radius: 6px;
  color: rgba(49, 54, 56, 1);
}

#mega-menu-dropdown .list-group-item:hover .search-list-item .bi,
#mega-menu-dropdown
  .list-group-item:hover
  .search-list-item
  .search-list-values
  h6,
#mega-menu-dropdown
  .list-group-item:hover
  .search-list-item
  .search-list-values
  p,
#mega-menu-dropdown .list-group-item.active .search-list-item .bi,
#mega-menu-dropdown
  .list-group-item.active
  .search-list-item
  .search-list-values
  h6,
#mega-menu-dropdown
  .list-group-item.active
  .search-list-item
  .search-list-values
  p {
  color: var(--main-color);
}

#mega-menu-dropdown .list-group-item.active,
#mega-menu-dropdown .list-group-item:hover {
  background: #e3f5ec !important;
  opacity: 1;
}

#mega-menu-dropdown .list-group-item.active .search-list-item svg,
#mega-menu-dropdown .list-group-item:hover .search-list-item svg {
  color: var(--main-color);
}

#mega-menu-dropdown .list-group-item .search-list-item {
  display: flex;
  gap: 10px;
}

#mega-menu-dropdown .list-group-item .search-list-item .bi {
  color: rgba(49, 54, 56, 1);
  font-size: 24px;
}

#mega-menu-dropdown .list-group-item .search-list-item .search-list-values h6 {
  font-weight: 500;
  color: rgba(49, 54, 56, 1);
  margin-bottom: 4px;
}

#mega-menu-dropdown .list-group-item .search-list-item .search-list-values p {
  color: rgba(176, 183, 186, 1);
  font-size: 14px;
  margin: 0;
}

#mega-menu-dropdown .list-group-item .search-list-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

#mega-menu-dropdown .list-group-item p.list-group-item-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(176, 183, 186, 1);
}

#mega-menu-dropdown .scrollbar-container {
  overflow: auto;
  max-height: 300px;
  width: 100%;
}

#mega-menu-dropdown .scrollbar-container .row {
  margin: 0;
}

#mega-menu-dropdown .search-tabs {
  position: relative;
}

#mega-menu-dropdown .search-tabs .has-search {
  position: absolute;
  right: 0px;
  bottom: 9px;
}

#mega-menu-dropdown .search-tabs .ant-input-group-wrapper .ant-input-wrapper {
  padding: 6px 12px;
}

#mega-menu-dropdown .search-tabs .nav-tabs .nav-link {
  padding: 0 0 12px 0;
  margin-right: 24px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(98, 108, 112, 1);
  border: none;
}

#mega-menu-dropdown .search-tabs .nav-tabs .nav-link.active,
#mega-menu-dropdown .search-tabs .nav-tabs .nav-link:hover {
  border-bottom: 2px solid var(--main-color);
  color: rgba(49, 54, 56, 1);
}

#mega-menu-dropdown .search-tabs .main-content .has-search .form-control {
  width: 200px;
  display: flex;
}

#mega-menu-dropdown .search-tabs .has-search .form-control-feedback {
  top: 1px;
  padding-left: 0;
}

ul.quickLinks {
  display: flex;
  flex-direction: column;
  height: 100%;
  list-style-type: none;
  padding: 24px;
  padding-top: 0;
  gap: 16px;
  margin: 0;
}

ul.quickLinks li a {
  color: var(--link-color);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

ul.quickLinks li a svg {
  margin-right: 12px;
  min-width: 24px;
}

ul.pagination-common-style {
  justify-content: flex-end;
}

.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");
}

.form-switch .form-check-input:checked: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='%23fff'/%3e%3c/svg%3e");
}

.btngroup .btn-add i {
  font-size: 1.5rem;
  margin-right: 6px;
}

.drag-n-drop {
  background-color: #f5f8ff;
  border: 1px dashed #d6e3ff;
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 184px;
  justify-content: center;
}
.product-groupimage .drag-n-drop {
  gap: 8px;
  min-height: 145px;
  p {
    padding: 0;
  }
  label {
    padding-left: 0;
  }
}

.product-groupimage .drag-n-drop .custom-file {
  padding: 0;
}
.drag-n-drop span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color-75);
  padding: 5px;
  border-radius: 100px;
  width: 44px;
  height: 44px;
  color: var(--main-color);
}

.drag-n-drop span i {
  font-size: 28px;
}

.drag-n-drop p {
  padding: 16px 0;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(74, 81, 84, 1);
}

.drag-n-drop .custom-file input {
  display: none;
}

.drag-n-drop .btn-upload {
  /* background: var(--main-color-75); */
  color: var(--main-color);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  padding: 10px 14px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  border: none;
}

.drag-n-drop .btn-upload:hover {
  background: #ebf1ff;
  color: var(--main-color);
}

.btn-save,
.btn-save:hover {
  background-color: var(--main-color);
  color: #fff;
}

.nxl-navigation .m-header img.logo.logo-lg {
  width: 100%;
  max-height: 70px;
}

input[type="date"] {
  text-transform: uppercase;
  color: #7b878c;
}

.dashboard-wrap .header-titles .title-h {
  margin: 10px 0 24px;
  color: var(--text-color);
}

.titles-search,
.filter-right-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.search-filters,
.search-filter-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-filters .ant-input-group-wrapper {
  width: auto;
}

.form-group.has-search {
  position: relative;
}

.form-group.has-search .form-control {
  padding-left: 40px;
  width: 200px;
}

.form-group.has-search .input-addon {
  position: absolute;
  top: 9px;
  left: 17px;
}

.form-group.has-search .input-addon img {
  width: 18px;
}

.multi-select-dropdown .dropdown-list {
  background: #fff;
  padding: 8px;
  border: 1px solid rgba(245, 246, 247, 1);
  border-radius: 6px;
  max-height: 315px;
}

.dropdown .dropdown-content {
  box-shadow: 0px 4px 24px 0px rgba(25, 27, 28, 0.16);
  padding: 16px;
  border-radius: var(--border-radius);
}

.dropdown .dropdown-content .dropdown-item {
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--border-radius);
}

.dropdown .dropdown-content .dropdown-item:hover {
  background: var(--main-color);
  color: #fff;
}

.dropdown .dropdown-content .dropdown-item .bi {
  padding-right: 8px;
}

.dashboard-cards .card {
  padding: 24px;
  /* border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 1); */
  background: rgba(255, 255, 255, 1);
}
.dashboard-cards .kpi-card {
  min-height: 148px;
}

.dashboard-cards .card .card-body {
  padding: 0;
}

.dashboard-cards .card-title {
  display: flex;
  gap: 8px;
  min-height: 40px;
  margin: 0;
}

.dashboard-cards .card-title h6 {
  color: rgba(123, 135, 140, 1);
  font-weight: 500;
  margin: 0;
}
.title-badge {
  background: var(--main-color-75);
  color: var(--main-color);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.9s;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.productgroup-badge {
  max-width: 60px;
  justify-content: center;
}
.title-badge .feather-x {
  color: var(--main-color);
  margin-left: 4px;
  cursor: pointer;
  display: none;
}
.title-badge:hover .feather-x {
  display: block;
}

.title-badge .feather-edit {
  color: var(--main-color);
  margin-left: 4px;
  cursor: pointer;
  display: none;
}
.title-badge:hover .feather-edit {
  display: block;
}

.req-qty {
  position: relative;
}
.req-qty .text-error {
  bottom: -18px;
}

.dashboard-cards .sub-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-cards .card-badges span {
  color: rgba(123, 135, 140, 1);
  margin-top: 12px;
  font-weight: 500;
  font-size: 12px;
}

.dashboard-cards .card-badges .text-success span {
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.dashboard-cards .card-badges .text-danger span {
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.card-header-right-icon .dropdown-toggle-store {
  background: rgba(250, 250, 250, 1) !important;
  border: 1px solid rgba(250, 250, 250, 1) !important;
  color: rgba(74, 81, 84, 1) !important;
  font-size: 14px !important;
  font-weight: 500;
  padding: 6px 12px;
}

.card-header-right-icon .dropdown-menu {
  box-shadow: 0px 4px 24px 0px rgba(25, 27, 28, 0.16);
  padding: 16px;
  border-radius: var(--border-radius);
  min-width: 183px;
}

.card-header-right-icon .dropdown-toggle::after {
  content: "\e92e";
  font-family: feather;
  font-size: 20px;
  border: none;
}

.masterdashboard-table .lastcard .card {
  margin-bottom: 0;
}

.transaction-table .card-header {
  display: none;
}

.transaction-table .card {
  margin-bottom: 0;
}

.page-header {
  padding-bottom: 18px;
}

.no-arrows .ant-input-number-handler-wrap {
  display: none;
}

.apexcharts-canvas .apexcharts-yaxis-title {
  display: none;
}

.ohp-loader {
  background-color: var(--main-color) !important;
  height: 3px !important;
}

.ohp-loader div {
  box-shadow: none !important;
}

.login-wrapper {
  height: 100vh;
  background: #fff;
}

.login-wrapper .row {
  height: 100vh;
}

.login-wrapper .login-titles {
  background: #0D402E;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.login-wrapper .login-titles .logo img {
  max-width: 160px;
  max-height: 70px;
}

.cursor-pointer {
  cursor: pointer;
}

.table {
  margin: 0;
}

.mb-32 {
  margin-bottom: 32px;
}

.pb-65 {
  padding-bottom: 65px;
}

sup {
  color: rgba(243, 3, 3, 1);
  font-size: 14px;
  top: -0.1rem;
}

.nxl-container-wrap .submenu-nav {
  width: 200px;
  height: calc(100vh - 80px);
  border-right: 1px solid rgb(229 231 232 / 75%);
  background: #fff;
  padding: 8px 16px;
  overflow: auto;
  position: sticky;
  top: 80px;
  scrollbar-width: thin;
  scrollbar-color: rgba(224, 226, 231, 1) #fff;
}

.nxl-container-wrap .submenu-nav .popup-title {
  padding: 5px 16px;
  color: var(--main-color);
  margin-bottom: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.nxl-container-wrap .submenu-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nxl-container-wrap .submenu-nav ul li {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 6px;
  display: block;
  cursor: pointer;
}

.nxl-container-wrap .submenu-nav ul li.active {
  background: var(--main-color-75);
  border-radius: var(--border-radius);
  color: var(--main-color);
}

.reports-table {
  padding-top: 16px;
}

.transaction-table .card .card-body {
  padding: 16px;
}

.card {
  margin-bottom: 24px;
  border-radius: 16px;
  border: 1px solid transparent !important;
}

.card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
  background-color: transparent;
  padding: 24px;
  min-height: 64px;
}
.store-information .card.reward-section .card-header {
  border-bottom: none;
  padding: 24px;
}

.card .card-header.card-header-end {
  justify-content: flex-end;
}

.card .card-body {
  padding: 24px;
  padding-top: 0;
}

.card .card-header .card-title {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.card .card-footer {
  border-top: 1px solid #e5e7eb;
  background-color: #fff;
  border-radius: 0 0 16px 16px;
  padding: 24px;
}

.btngroup {
  display: flex;
  grid-column-gap: 16px;
  flex-wrap: wrap;
  row-gap: 16px;
}

.btngroup .btn {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--border-radius-input);
  white-space: nowrap;
  height: 40px;
}

.btngroup .btn-cancel,
.btngroup .btn-cancel:hover {
  background-color: rgba(229, 231, 232, 1);
  color: rgba(25, 27, 28, 1);
  border: 1px solid rgba(229, 231, 232, 1);
}
.btn-cancel,
.btn-cancel:hover {
  background-color: rgba(229, 231, 232, 1) !important;
  color: rgba(25, 27, 28, 1) !important;
  border: 1px solid rgba(229, 231, 232, 1) !important;
}
.btn-save,
.btn-save:hover,
.btn-primary,
.btn-primary:hover {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff;
}

.btn-save:focus,
.btn-primary:focus {
  box-shadow: none;
  color: #fff;
  background-color: var(--main-color);
}
.btn-primary-outline,
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  display: flex;
  align-items: center;
}
.btngroup .btn-primary,
.btn-primary-outline {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btngroup .btn-primary .bi-plus-lg {
  font-size: 16px;
}

/* .store-information .card .card-header {
  border: none;
  padding-bottom: 0;
} */

.store-information .card .card-header h5 {
  text-transform: capitalize !important;
  color: var(--text-color);
  font-size: 22px;
  font-weight: 600;
}

.settings-wrap .card .card-header h5 {
  text-transform: capitalize !important;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 600;
}

.td-color {
  color: var(--main-color);
}
.price-status {
  padding: 2px 6px;
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.price-status.active {
  background: #e6fbe4;
  color: #0fa401;
}
.price-status.inactive {
  background: #fff0e5;
  color: #ff6b00;
}
.deleted {
  background: rgb(255 0 0 / 6%);
  color: rgb(255 0 0 / 83%);
}

.store-information .add-store-field .add-store-title {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
}

.store-information .add-store-field .field-info,
.field-info {
  padding: 16px;
  border: 1px solid #e5e7e8;
  border-radius: var(--border-radius);
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-information .add-store-field .store-field-reset,
.store-field-reset {
  padding: 0;
  border: none;
  border-radius: 0;
  min-height: auto;
}

.store-information .add-store-field .field-info .multi-select-dropdown {
  width: 100%;
  min-width: auto;
}

.store-information .add-store-field .field-info .form-group .form-control,
.form-group .form-control {
  border: 1px solid #e0e2e7;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(25, 27, 28, 1);
  line-height: inherit;
  min-height: 40px;
}
input {
  color: rgba(25, 27, 28, 1);
}
input::placeholder {
  color: rgba(123, 135, 140, 1);
}

.field-info .form-group .input-group {
  border: 1px solid #e0e2e7;
  padding: 3px;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(123, 135, 140, 1);
  line-height: inherit;
  height: 40px;
  flex-wrap: nowrap;
}

.field-info .form-group .input-group:focus-within {
  border: 1px solid var(--main-color) !important;
}

.field-info .form-group .input-group .input-group-text {
  background: rgba(245, 246, 247, 1);
  border: none;
  padding: 8px;
  min-width: 34px;
  display: flex;
  justify-content: center;
  border-radius: 6px 0 0 6px;
}

.field-info .form-group .input-group .form-control {
  all: unset;
  width: 100%;
  padding: 8px !important;
  border: none !important;
  min-height: auto !important;
  color: rgba(25, 27, 28, 1);
}
/* .field-info-reset{padding-bottom: 0;} */
.form-group .group-left .input-group-text {
  background: #fff;
  padding: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-color);
  line-height: inherit;
  border-radius: var(--border-radius);
}

.pricing-formula-radios .radio-titles {
  font-size: 14px;
  margin: 8px 0;
  color: var(--text-color);
}
.pricing-formula-radios .ohp-radio .form-check-label {
  color: rgba(25, 27, 28, 1);
}
.pricing-formula-radios .pricing-formula-gaps {
  padding-left: 32px;
}
.tips-catg {
  margin-top: 1.5rem;
}

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

.brand-image .image-upload {
  display: flex;
  align-items: center;
}

.brand-image .image-upload figure {
  margin: 0;
}

.brand-image .image-upload .upload-text h5 {
  color: rgba(98, 108, 112, 1);
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 12px;
}

.brand-image .image-upload .upload-text h6 {
  color: rgba(98, 108, 112, 1);
  margin: 0;
  font-weight: 400;
  font-size: 11px;
}

.brand-image .btn {
 background: #fff;
  border: 1px solid var(--main-color);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: var(--border-radius-input);
  white-space: nowrap;
  color: #000 !important;
}

.btn:focus,
.btn:active:focus {
  box-shadow: none;
}

.custom-select {
  padding-left: 38px !important;
  background: url(../images/clock.svg) no-repeat top left;
  background-position: 12px;
}

.store-information .add-store-field .col-form-label,
.form-group .col-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  padding-top: 0;
}

.store-information .add-zone-wrap .form-group-action {
  display: flex;
  gap: 16px;
}

.store-information .add-zone-wrap .form-group-action .btn {
  background-color: transparent;
  padding: 10px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(202, 207, 209, 1);
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}

.store-information .add-zone-wrap .form-group-action .input-add {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.store-information .add-zone-wrap .form-group-action .input-del {
  border: 1px solid #f00;
}

.store-information .add-zone-wrap .form-group-action .input-del:hover {
  border: 1px solid #f00;
  color: #f00;
}

.store-information .add-zone-wrap .form-group-action i {
  font-size: 18px;
}

.store-information .add-newzone.btn {
  border: none;
  background-color: transparent;
  padding: 0;
  color: var(--main-color);
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-information .add-newzone.btn i {
  font-size: 18px;
}

.store-information .zone-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.store-information .zone-title .add-store-title {
  margin-bottom: 0;
}

.store-information .add-zone-wrap .zone-input {
  position: relative;
}

/* .store-information .add-zone-wrap .zone-input .text-error{
  bottom:4px;
} */
.store-information .add-zone-wrap .form-group-action:not(:last-child) {
  margin-bottom: 24px;
}


.ohp-switch .form-check-label,
.ohp-switch label.col-form-label {
  display: flex;
  align-items: center;
  height: 100%;
}


.ohp-switch {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  min-height: auto;
  gap: 24px;
}

.ohp-switch .form-check-input {
  padding: 0;
  margin: 0;
  min-width: 40px;
  min-height: 20px;
  width: 40px;
  height: 20px;
  background-color: rgba(209, 209, 214, 1);
  border: none;
  border-radius: 100px;
  margin-left: 0;
  vertical-align: middle;
  cursor: pointer;
  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");
}

.ohp-switch .form-check-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
}

.ohp-checbox .form-check {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  min-height: auto;
}

.ohp-checbox .form-check:not(:last-child) {
  margin-bottom: 24px;
}

.ohp-checbox .form-check .form-check-input {
  cursor: pointer;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border: 1px solid rgb(214 216 217);
  border-radius: 3px !important;
  margin: 0 16px 0 0 !important;
  top: 0;
}
.form-check-input:checked {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}
.half-check .form-check-input:checked {
  background: none;
  /* border:none; */
}
.half-check .form-check-input {
  position: relative;
}
.half-check .form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 9px;
  width: 90%;
  height: 1px;
  background: var(--main-color);
  left: 1px;
  right: 1px;
}

.ohp-checbox .form-check-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
}

.radio-terminal {
  display: flex;
  gap: 24px;
}

.ohp-radio .form-check-input {
  padding: 0;
  margin: 0;
  min-width: 20px;
  min-height: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.ohp-radio {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  min-height: auto;
  gap: 8px;
  min-width: 145px;
}

.ohp-radio .form-check-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(123, 135, 140, 1);
}

.ohp-radio.active .form-check-label {
  color: var(--main-color);
  font-weight: 600;
}

.ohp-radio .form-check-input {
  border-radius: 50% !important;
}

/* .business-labels{ 
  margin-top: 14px;
} */
.business-labels .nav-tabs li button {
  border-radius: 40px;
  background: #e5e7e8;
  height: 32px;
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  width: 57px;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.business-labels .nav-tabs li button.active {
  background: var(--main-color);
  color: #fff;
}

.business-labels .nav-tabs {
  border: none;
  padding: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  row-gap: 16px;
}

.ant-modal-root .ant-modal-wrap {
  z-index: 1041;
}
.ant-modal-root .ant-modal-mask {
  z-index: 1040;
}

.ohp-modal .ant-modal-content {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(224, 226, 231, 1);
  padding: 0;
}

.ohp-modal .ant-modal-content .ant-modal-header {
  padding: 12px 24px;
  min-height: 56px;
  border-bottom: 1px solid rgba(229, 231, 232, 1);
  margin: 0;
  display: flex;
  align-items: center;
}

.ohp-modal .ant-modal-content .ant-modal-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(49, 54, 56, 1);
}

.ohp-modal .ant-modal-content .ant-modal-body {
  padding: 24px;
  border-bottom: 1px solid rgba(229, 231, 232, 1);
}

.ohp-modal .ant-modal-content .ant-modal-body .card {
  margin: 0;
}

.ohp-modal .ant-modal-content .ant-modal-body .card .card-body {
  padding: 0;
}

.ohp-modal .ant-modal-footer {
  margin: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.ohp-modal .ant-modal-footer .ant-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: var(--border-radius-input);
  white-space: nowrap;
  height: 40px;
}

.ohp-modal .ant-modal-footer .ant-btn-default,
.ohp-modal .ant-modal-footer .ant-btn-default:hover {
  background-color: rgba(229, 231, 232, 1);
  color: rgba(25, 27, 28, 1);
  border: 1px solid rgba(229, 231, 232, 1);
}

.ohp-modal .ant-modal-footer .ant-btn-primary {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
  margin-inline-start: 0 !important;
}

.dropdown-action .btn {
  padding: 0;
  border: none;
}

.dropdown-action .btn::before {
  display: none;
}

.dropdown-action .dropdown-menu {
  width: 100px;
}

.dropdown-action .dropdown-menu li:last-child button {
  margin: 0;
}

.dropdown-action .feather-more-vertical {
  font-size: 18px;
  color: rgba(25, 27, 28, 1);
}

.nodata-card {
  padding: 24px 24px 65px 24px;
  background: #fff;
  /* display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 360px;
  justify-content: center; */
  text-align: center;
  border-radius: var(--border-radius);
}

.nodata-card h4 {
  font-weight: 600;
  color: rgba(74, 81, 84, 1);
}

.nodata-card p {
  font-weight: 500;
  color: rgba(74, 81, 84, 1);
  margin: 16px 0;
}

.nodata-card .btn {
  padding: 9px 14px;
  font-size: 0.875rem;
  font-weight: 600;
}

.custom-header {
  position: sticky;
  top: 79px;
  background: #fff !important;
  z-index: 99;
}

#storesettings-accordion {
  gap: 24px;
  display: flex;
  flex-direction: column;
}

#storesettings-accordion .accordion-item {
  background: transparent;
  border: none;
}

#storesettings-accordion .accordion-item .accordion-header .accordion-button {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
}
#storesettings-accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  background-image: url(../images/downloadicon.svg);
}

#storesettings-accordion .accordion-item .accordion-body {
  border: 1px solid rgba(229, 231, 232, 1);
  padding: 16px;
  border-radius: var(--border-radius);
  margin-top: 16px;
}

#storesettings-accordion .accordion-item .accordion-body .form-check {
  display: flex;
  padding: 8px 0;
  align-items: center;
  gap: 8px;
  /* min-height: 40px; */
}

#storesettings-accordion
  .accordion-item
  .accordion-body
  .form-check
  .form-check-input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 3px;
  border: 1px solid #e5e7e8;
  margin: 0;
  padding: 0;
}

#storesettings-accordion
  .accordion-item
  .accordion-body
  .form-check
  .form-check-input:checked {
  border: 1px solid var(--main-color) !important;
}

#storesettings-accordion
  .accordion-item
  .accordion-body
  .form-check
  .form-check-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}

#storesettings-accordion
  .accordion-item
  .accordion-body
  .form-group
  .col-form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}

.mark-blue {
  color: var(--main-color);
  margin-left: 6px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.download-icon {
  font-size: 24px;
  cursor: pointer;
}

.dropdown.open .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  right: 0;
  margin-top: 8px;
  min-width: 150px;
}

.rmdp-wrapper {
  padding: 12px 14px;
  box-shadow: 0px 4px 30px 0px rgba(46, 45, 116, 0.1) !important;
  border-radius: var(--border-radius) !important;
  border: 1px solid rgba(255, 255, 255, 1);
}

.rmdp-border-right {
  flex: 1;
  border: none !important;
  padding: 0 !important;
}

.rmdp-day-picker > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rmdp-wrapper .rmdp-header {
  padding: 0;
  margin: 0;
}

.rmdp-wrapper .rmdp-header-values {
  display: flex;
}

.rmdp-wrapper .rmdp-header-values span {
  width: auto;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
}

.rmdp-wrapper .rmdp-day-picker {
  display: block !important;
}

.rmdp-wrapper .rmdp-header .rmdp-arrow-container {
  border: 1px solid var(--main-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0;
  min-width: 40px;
  min-height: 40px;
  font-size: 20px;
}

.rmdp-wrapper .rmdp-header .rmdp-arrow-container .rmdp-arrow{
  border: 1px solid var(--main-color);
}

.rmdp-wrapper .rmdp-header .rmdp-arrow-container.disabled {
  border: 1px solid rgba(229, 231, 232, 1);
}

.rmdp-wrapper .rmdp-header .rmdp-arrow-container .rmdp-arrow {
  /* border:1px  solid var(--main-color); */
  border-width: 0 2px 2px 0;
  height: 10px;
  padding: 2px;
  width: 10px;
  margin: 0;
}

.rmdp-arrow-container:hover .rmdp-arrow {
  border: solid #fff !important;
  border-width: 0 2px 2px 0 !important;
}

.rmdp-wrapper .rmdp-arrow-container:hover {
  background: var(--main-color) !important;
  box-shadow: none;
}

.rmdp-wrapper .rmdp-top-class {
  gap: 16px;
  border-bottom: none !important;
}

.rmdp-wrapper .selection-btns {
  gap: 16px;
  padding: 0px !important;
  justify-content: flex-end !important;
  /* margin-bottom: -58px; */
}

.rmdp-wrapper .selection-btns button {
  padding: 10px 12px !important;
  background: rgba(245, 246, 247, 1) !important;
  border-radius: 8px !important;
  margin: 0 !important;
  font-size: 14px !important;
  height: 40px;
  color: rgba(74, 81, 84, 1) !important;
}

/* .rmdp-wrapper .selection-btns button:nth-child(5) {
  display: none;
} */

.rmdp-wrapper .rmdp-week-day {
  color: rgba(133, 141, 157, 1) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

.rmdp-wrapper .rmdp-day.rmdp-today span {
  color: var(--main-color) !important;
  border: 1px solid var(--main-color) !important;
  background-color: #ffffff !important;
  font-weight: 600;
}
.rmdp-wrapper .rmdp-day.rmdp-today span:hover,
.rmdp-wrapper .rmdp-today.rmdp-range span {
  background-color: var(--main-color) !important;
  color: #fff !important;
}
.rmdp-wrapper .rmdp-day span {
  width: auto;
  height: auto;
}

.rmdp-wrapper .date-ftr {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  margin-top: 20px;
}

.rmdp-wrapper .date-ftr .btn-ftr {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(229, 231, 232, 1);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(25, 27, 28, 1);
  text-align: left;
  width: 50%;
}

.rmdp-ep-arrow:after {
  display: none;
}

.rmdp-wrapper .rmdp-day span:hover {
  background: var(--main-color) !important;
  color: #fff !important;
}
.rmdp-wrapper .rmdp-day-hidden span:hover {
  background: transparent !important;
}

.rmdp-wrapper .rmdp-week .rmdp-range:first-child {
  border-bottom-left-radius: 0%;
  border-top-left-radius: 0%;
}

.rmdp-wrapper .rmdp-week .rmdp-range:last-child {
  border-bottom-right-radius: 50%;
  border-top-right-radius: 50%;
}

.rmdp-wrapper .rmdp-calendar {
  .rmdp-range {
    background: var(--main-color-75);
    box-shadow: none;
    color: #000000;
    /* border-radius: 100%; */
    span {
      background: var(--main-color-75);
      color: #000;
    }

    &.start {
      background: var(--main-color-75);
      color: #ffffff;

      span {
        background: var(--main-color);
        color: #fff;
      }
    }

    &.end {
      background: var(--main-color-75);
      color: #ffffff;

      span {
        background: var(--main-color);
        color: #fff;
      }
    }
  }
  /* .rmdp-day{
    border-radius: 100%;
  } */

}

/* src/MultiSelectDropdown.css */

.multi-select-dropdown {
  position: relative;
  min-width: 200px;
  /* Adjust the width as needed */
  display: flex;

  .arrow {
    position: absolute;
    right: 13px;
    top: 10px;
  }

  ul.dropdown-list {
    top: 100%;

    li {
      padding: 0px;

      label {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 10px;
      }
    }
  }
}

.dropdown-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  background-color: white;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-list-item {
  padding: 8px;
}

.dropdown-list-item:hover {
  background-color: #007bff;
}

input[type="checkbox"] {
  margin-right: 8px;
}

.slick-slider .slider-caption h5 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}

.slick-slider .slider-caption p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 500px;
  color: #fff;
}

.slick-dots {
  /* top: -30px; */
  bottom: -30px !important;
  text-align: left !important;
  display: flex !important;
  gap: 8px;
}

.slick-dots li button:before {
  display: none !important;
}

.slick-dots li button {
  width: 9px !important;
  height: 9px !important;
  padding: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  border-radius: 100px !important;
  border: 0px !important;
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.slick-dots li.slick-active button {
  opacity: 1;
  width: 30px !important;
  height: 8px !important;
  background: #fff !important;
}

.slick-dots li {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0;
  cursor: pointer;
}

.ant-table {
  font-family: var(--brand-ffamily);
}

.ant-table table .ant-table-thead tr th {
  padding: 8px 16px;
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(249, 250, 251, 1);
  vertical-align: bottom;
}
.ant-table table .ant-table-thead tr th .ant-table-column-title {
  white-space: nowrap;
}
.ant-table table .ant-table-thead tr th::before {
  background-color: transparent !important;
}

.ant-table-wrapper .ant-table table {
  font-family: var(--brand-ffamily);
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid rgba(229, 231, 232, 1);
}
.ant-table-wrapper .ant-table table tbody tr:last-child td {
  border-bottom: none;
}

.ant-table-wrapper .ant-table table tfoot.ant-table-summary tr td {
  border-bottom: none;
}
.ant-table-wrapper .ant-table table tfoot.ant-table-summary tr:first-child td {
  border-top: 1px solid rgba(229, 231, 232, 1);
}
.ant-table-wrapper .ant-table {
  background: transparent;
}

.ant-table-wrapper
  .ant-table
  table
  .ant-table-thead
  tr
  th:hover
  .ant-table-column-sorter {
  opacity: 1;
}

.ant-table-wrapper
  .ant-table
  table
  .ant-table-thead
  tr
  th
  .ant-table-column-sorter {
  opacity: 0;
  transition: all 0.9s;
}

.ant-table-wrapper .ant-table table tr td {
  padding: 12px 16px;
  vertical-align: middle;
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
  vertical-align: top;
}

.ant-table-column-has-sorters::before {
  height: 0 !important;
}

.ant-table-wrapper .ant-table-pagination.ant-pagination {
  margin: 24px 0 0;
  align-items: center;
}

.ant-pagination .ant-pagination-options {
  display: flex;
  align-items: center;
}

.ant-pagination .ant-pagination-options-quick-jumper {
  height: auto;
}

.ant-pagination .ant-pagination-options-quick-jumper input {
  height: 40px;
}

.ant-select {
  border-radius: var(--border-radius);
}

.ant-select .ant-select-selector {
  border: 1px solid rgba(202, 207, 209, 1);
  background: #ffffff !important;
  border-radius: var(--border-radius) !important;
  padding: 5px 12px !important;
  height: 40px !important;
}
.ant-pagination-item:not(.ant-pagination-item-active):hover,
.ant-pagination-item-link:hover {
  background-color: #fff !important;
  border: 1px solid var(--main-color) !important;
}
.ant-pagination .ant-pagination-item-active {
  border-color: var(--main-color);
  border-radius: var(--border-radius);
}
.form-group .ant-select-selection-placeholder {
  font-size: 0.875rem;
  font-weight: 400;
  /* color: rgba(123, 135, 140, 1) !important; */
}

.ant-select-single {
  height: auto;
}

.ant-select .ant-select-selector .ant-select-prefix {
  margin: 1px 6px 0 0;
}

/* .ant-select .ant-select-selector .ant-select-selection-placeholder {
  color: var(--text-color);
} */

.ant-input-group-wrapper .ant-input-group-addon {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 0;
}

.ant-input-group-wrapper .ant-input {
  border: none;
  border-radius: 0;
  padding: 0 0 0 4px;
}

.ant-input-group-wrapper .ant-input-wrapper {
  background: #fff;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(229, 231, 232, 1);
}

.ant-input-group-wrapper .ant-input-wrapper:focus-within {
  border: 1px solid var(--main-color);
  border-radius: var(--border-radius);
}

.ant-select-outlined:not(.ant-select-disabled):not(
    .ant-select-customize-input
  ):not(.ant-pagination-size-changer):hover
  .ant-select-selector {
  border-color: var(--main-color);
  box-shadow: none;
}

.nodata-card figure {
  margin: 0;
}

.header-custom-dropdown .ant-select-selector {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.header-custom-dropdown .ant-select-selection-placeholder {
  font-size: x-large;
}

.ant-select-dropdown {
  border-radius: 6px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.16);
  padding: 8px;
}

.ant-checkbox-wrapper .ant-checkbox + span {
  padding: 0 0 0 16px;
  color: rgba(25, 27, 28, 1);
  white-space: normal;
  word-break: break-word;
}

.ant-select-dropdown .ant-select-item {
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.ant-select-dropdown .search-all {
  padding: 8px;
  border-bottom: 1px solid rgba(245, 246, 247, 1);
  margin: 8px 0 0 0;
}

.selectall-list {
  margin-top: 8px;
}

/* .ant-select-outlined.header-filters-dropdown .ant-select-selector {
  border: 1px solid var(--main-color) !important;
} */

.ant-select-outlined.header-filters-dropdown .ant-select-selector svg {
  color: var(--main-color);
  margin-top: -3px;
}

.ant-select-outlined.header-filters-dropdown .ant-select-selection-placeholder {
  color: var(--main-color);
}

.ant-dropdown .ant-dropdown-menu {
  min-width: 180px;
  border: 1px solid rgba(229, 231, 232, 1);
  border-radius: var(--border-radius);
  box-shadow: 0px 4px 30px 0px rgba(46, 45, 116, 0.1);
  padding: 8px;
}

.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
  /* margin: 0 0 8px 0; */
  padding: 8px;
  color: rgba(25, 27, 28, 1);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-input);
}

.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:last-child {
  margin-bottom: 0;
}

.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:hover {
  color: #fff;
  background-color: var(--main-color);
}

.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:hover svg {
  color: #fff;
}

.ant-dropdown
  .ant-dropdown-menu
  .ant-dropdown-menu-item
  .ant-dropdown-menu-item-icon {
  font-size: 16px;
  margin-right: 8px;
}

.ant-input-outlined[disabled],
.ant-input-group-wrapper-disabled .ant-input-group-addon {
  background: #fff !important;
}

.text-error {
  font-size: 12px;
  color: #f00 !important;
  position: absolute;
}
.Usererror-message{
  color: #f00 !important;
  font-size: 12px !important;
}

.form-control:focus,
.form-control:hover,
.ant-select-focused {
  border-color: var(--main-color) !important;
  box-shadow: none !important;
}

.header-custom-dropdown {
  padding: 18px 0 16px 0;
  /* gap: 8px; */
}

.header-custom-dropdown .ant-select-selector {
  padding: 0 !important;
}

.header-custom-dropdown .ant-select-selector .ant-select-selection-placeholder {
  font-size: 22px;
  font-weight: 600;
}

.header-custom-dropdown .ant-select-selection-search {
  padding: 0;
}

.header-custom-dropdown.ant-select .ant-select-arrow {
  position: relative;
  margin-top: -4px;
}

.header-custom-dropdown.ant-select .ant-select-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--main-color);
}

.header-custom-dropdown-pop {
  min-width: 300px;
}

/* .createtablemodal{
  max-width: 560px;
} */

.integration-wrap .integration-list {
  border-radius: var(--border-radius);
  border: 1px solid #f5f6f7;
  box-shadow: 0px 2px 16px 0px #0000000a;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.integration-wrap .integration-list .integration-logo {
  min-width: 126px;
  min-height: 126px;
  border-radius: var(--border-radius);
  background: #f5f6f7;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-self: center;
  margin: 0;
}
.integration-wrap .integration-list .integration-logo img {
  width: 100%;
}

.integration-wrap .integration-list .integration-name .name-title {
  color: #191b1c;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.integration-wrap .integration-list .integration-name .name-para {
  color: #313638;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.integration-wrap .integration-list .integration-name img {
  width: 100%;
}

.integration-wrap .integration-list:not(:last-child) {
  margin-bottom: 24px;
}
.integration-platform {
  margin-top: 24px;
}
.integration-platform .platform-card {
  border: 1px solid #ebebeb;
  border-radius: var(--border-radius);
  padding: 16px;
  margin-bottom: 24px;
}
.integration-platform .platform-card .card-details {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  border-bottom: 1px solid #f1f1f5;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.integration-platform .platform-card .card-logo {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
/* .integration-platform .platform-card .logo-name{padding: 8px;} */
.integration-platform .platform-card .card-titles h4 {
  color: #12100e;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.integration-platform .platform-card .card-titles p {
  color: #12100e;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 0;
}
.integration-platform .platform-card .card-titles p span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: inline-block;
  margin-right: 4px;
}
.integration-platform .platform-card .card-titles p span.active {
  background: #15b097;
}
.integration-platform .platform-card .card-titles p span.in-active {
  background: #eda145;
}
.integration-platform .platform-card .card-titles img {
  max-width: 38px;
}
.integration-platform .platform-card .logo-name img {
  max-width: 38px;
}
.integration-platform .platform-card .card-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.integration-platform .platform-card .author-details h6 {
  font-size: 0.65rem;
  font-weight: 400;
  color: #858584;
  margin-bottom: 8px;
}
.integration-platform .platform-card .author-details h5 {
  font-size: 0.75rem;
  font-weight: 500;
  color: #12100e;
}
/* .integration-platform .platform-card .author-details{
  white-space: nowrap;
} */
.integration-platform .platform-card .author-settings {
  flex: 1;
  text-align: right;
}
.integration-platform.aggregatore-card .platform-card {
  padding: 24px 16px;
  box-shadow: none;
  margin-bottom: 0;
  border: 1px solid #f5f6f7;
  position: relative;
}
.integration-platform.aggregatore-card .platform-card .card-close {
  position: absolute;
  top: -11px;
  right: -8px;
  background: #fff;
  cursor: pointer;
}
.integration-platform.aggregatore-card .card-details {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.numbers-selected ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.numbers-selected ul li {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #313638;
}
.numbers-selected ul li span:last-child {
  cursor: pointer;
}
.channelmodal {
  width: 530px !important;
  max-width: 530px;
}
.form-group p.input-para {
  font-size: 0.875rem;
  color: #4a5154;
  margin: 0;
  font-weight: 400;
}
.form-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-flex figure {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.form-flex figure img {
  max-width: 38px;
}
.form-flex figure span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #12100e;
}
.input-select-wrap {
  border-radius: var(--border-radius);
  padding: 16px;
  border: 1px solid #e5e7e8;
}
.input-select-wrap.active {
  background: #f5f8ff;
  border: 1px solid var(--main-color);
}
.input-select-wrap:not(:last-child) {
  margin-bottom: 8px;
}
.input-select-wrap .check-text {
  display: flex;
  gap: 8px;
  align-items: center;
}
.input-select-wrap .check-text p {
  font-size: 0.75rem;
  color: #4a5154;
  margin: 0;
}
.input-select-wrap .check-text p span:first-child {
  margin-right: 4px;
}

.channelmodal .ohp-checbox {
  margin-top: 10px;
}
.channelmodal .ohp-checbox .form-check-input {
  margin-right: 8px !important;
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  border: 1px solid #b0b7ba;
}
.channelmodal .ohp-checbox .form-check-label {
  font-size: 0.75rem;
}
.channelmodal .select-dates .dates-info {
  display: flex;
  gap: 12px;
}
.channelmodal .select-dates .dates-info .info-tiles span {
  display: block;
}
.channelmodal .select-dates .dates-info .info-tiles span:first-child {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6f767e;
}
.channelmodal .select-dates .dates-info .info-tiles span:last-child {
  font-size: 0.938;
  font-weight: 600;
  color: #1d172a;
}
.account-settings .account-details.card {
  padding: 24px;
  min-height: calc(100vh - 200px);
  margin-top: 20px;
}
.account-settings .account-details.card h4.title {
  margin: 0;
  color: #191b1c;
}
.account-settings .account-details .custom-tabs {
  margin-top: 25px;
}
.custom-tabs .nav-tabs {
  flex-wrap: nowrap;
  overflow: auto;
  overflow-y: hidden;
  /* padding-bottom: 8px; */
  align-items: center;
}
.custom-tabs .nav-tabs .nav-item {
  white-space: nowrap;
}
.account-settings .details-tabs.custom-tabs .nav-tabs .nav-link.active,
.account-settings .details-tabs.custom-tabs .nav-tabs .nav-link:hover {
  color: var(--main-color);
}
.account-settings .details-tabs .tab-content .top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.account-settings .details-tabs .tab-content .top-info .top-titles p {
  font-size: 14px;
  color: #626c70;
  margin: 0;
}
.account-settings .details-tabs .tab-content .account-btns {
  display: flex;
  align-items: center;
  grid-column-gap: 12px;
}
.account-settings .details-tabs .tab-content .account-btns .btn {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 8px;
}
.account-settings .details-tabs .tab-content .account-btns .btn-cancel {
  border: 1px solid #cacfd1;
  background: #fff;
  color: #313638;
}
.reset-btns {
  justify-content: flex-end;
  border-top: 1px solid #e9eaeb;
  padding-top: 34px;
}
.account-settings .tab-content {
  padding-top: 40px;
}
.account-settings .tab-content .top-info .top-titles p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #626c70;
}
.account-settings .tab-content .top-info .top-titles h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #191b1c;
  margin-bottom: 4px;
}
.account-settings .btngroup .btn-cancel {
  background-color: #fff;
}
.account-settings .tab-content .top-info .btn-group {
  border: 1px solid var(--main-color-75);
  background: #fff;
  border-radius: var(--border-radius);
}
.account-settings .tab-content .top-info .btn-group .btn {
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}
.account-settings .tab-content .top-info .btn-group .btn:hover {
  color: var(--main-color);
}
.account-settings .tab-content .top-info .btn-group .btn.active {
  background-color: var(--main-color-75);
  color: var(--main-color);
}
.account-settings .tab-content .top-info .notification {
  display: flex;
  grid-column-gap: 44px;
  align-items: flex-start;
}
.account-settings .details-tabs .tab-content .form-group .col-form-label {
  display: block;
  font-weight: 600;
}
.account-settings .details-tabs .tab-content .form-group .label-span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #626c70;
  padding-bottom: 6px;
  display: block;
}
.account-settings .details-tabs .tab-content .form-group {
  margin-bottom: 32px;
}
.account-settings .tab-content .profile-img {
  display: flex;
  grid-column-gap: 20px;
  align-items: flex-start;
}
.account-settings .tab-content .profile-img .img-wrap figure {
  position: relative;
  margin: 0;
}
.account-settings .tab-content .profile-img .img-wrap figure img {
  width: 100%;
  border-radius: 8px;
}
.account-settings .tab-content .profile-img .img-wrap span.close {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 32px;
  height: 32px;
  background: #d6e3ff;
  color: var(--main-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.account-settings .tab-content .profile-img .img-wrap span.close .bi::before {
  font-weight: 800 !important;
}
.account-settings .tab-content .profile-img .img-wrap {
  flex: 0 0 100px;
}
.account-settings .tab-content .profile-img .drag-n-drop {
  background-color: #f5f8ff;
  border: 1px dashed #d6e3ff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  width: 100%;
}
.account-settings .tab-content .profile-img .drag-n-drop .bi-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d6e3ff;
  padding: 5px;
  border-radius: 100px;
  width: 44px;
  height: 44px;
  color: var(--main-color);
  border: 5px solid #ebf1ff;
}
.account-settings .tab-content .profile-img .drag-n-drop p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #626c70;
  text-align: center;
  padding: 0;
}
.custom-file span {
  color: #626c70;
  font-weight: 500;
  pointer-events: none;
}
.account-settings .tab-content .profile-img .drag-n-drop .custom-file {
  border: none;
  padding: 16px 0 4px 0;
}
.account-settings .tab-content .profile-img .drag-n-drop .custom-file input {
  display: none;
}
.account-settings .tab-content .profile-img .drag-n-drop .btn-upload {
  background: transparent;
  display: flex;
}
.account-settings .tab-content .profile-img .drag-n-drop .btn-upload span {
  background: transparent;
  width: auto;
  height: auto;
  padding: 0 4px;
}
.account-settings .tab-content .details-fileds .form-group {
  position: relative;
}
.account-settings .tab-content .details-fileds .form-group span.input-addon {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #b0b7ba;
  cursor: pointer;
}
.account-settings .tab-content .brdr-top {
  border-top: 1px solid #e9eaeb;
  padding-top: 32px;
}
.custom-tabs .nav-tabs .nav-link.active,
.custom-tabs .nav-tabs .nav-link:hover {
  border: none;
  border-bottom: 3px solid var(--main-color);
  color: var(--main-color);
}
.custom-tabs .nav-tabs .nav-link {
  padding: 0 0 10px 0;
  margin-right: 24px;
  color: #626c70;
  font-size: 1rem;
  border: transparent;
  font-weight: 500;
  border-bottom: 3px solid transparent;
}
.custom-tabs .bulk-download {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.custom-tabs .bulk-download .download-btns {
  display: flex;
  grid-column-gap: 8px;
}
.custom-tabs .bulk-download .download-btns .dtn-download {
  background: var(--main-color);
  color: #fff;
}
.custom-tabs .bulk-download .download-btns .btn-upload {
  color: var(--main-color);
  padding: 0;
}

.custom-file label.btn.btn-upload {
  color: var(--main-color);
  padding: 0;
  border: 0;
  display: block;
}
.custom-tabs .bulk-download .download-btns .custom-file input,
.custom-file.btn input {
  display: none;
}
.time-customise {
  margin-top: 12px;
}
.time-customise .btn-customise {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--main-color);
  padding: 0;
  background: transparent;
  border: none;
}
.form-addon {
  position: relative;
}
.form-addon .input-addon {
  position: absolute;
  right: 16px;
  top: 7px;
  color: #b0b7ba;
  cursor: pointer;
  transform: rotate(90deg);
}
.form-addon .input-addon .bi-code {
  font-size: 18px;
}
.timings-wrap {
  display: flex;
  gap: 22px;
  align-items: center;
}
.timings-wrap .date-to {
  color: rgba(159, 156, 164, 1);
  padding-top: 25px;
}
.timings-wrap .appalldays {
  display: flex;
  gap: 14px;
  color: var(--main-color);
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  padding-top: 25px;
}
.timings-wrap .appalldays svg {
  color: var(--main-color);
}
.addtimings-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.date-wrap .form-addon .input-addon {
  transform: rotate(0deg);
}
.date-wrap .fromtodate {
  width: 240px;
}
/* .timings-wrap{
  display: flex;
  gap: 22px;
  align-items: center;
} */
/* .timings-wrap .date-to{
  color: rgba(159, 156, 164, 1);
  padding-top: 25px;
} */
/* .timings-wrap .appalldays{
  display: flex;
  gap: 14px;
  color: var(--main-color);
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  padding-top: 25px;
} */
/* .timings-wrap .appalldays svg{
  color: var(--main-color);
}
.addtimings-wrap{
  display: flex;
  align-items: flex-start;
  gap: 20px;

} */
.addtimings-wrap .timings-info {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  min-width: 300px;
}
.addtimings-wrap .weekday {
  padding-top: 10px;
}
.addtimings-wrap .weekday li:first-child {
  flex: 0 0 150px;
}
.addtimings-wrap .timings-fields {
  margin-bottom: 16px;
}
.addtimings-wrap .form-addon {
  min-width: 144px;
}
.addtimngsmodal {
  max-width: 755px;
  width: 100% !important;
}
.addtimngsmodal .addtimings-wrap .btnclosed {
  padding: 6px 20px;
  background: rgba(245, 247, 247, 1);
  border: 1px solid rgba(245, 247, 247, 1);
  color: rgba(123, 135, 140, 1);
  font-size: 1rem;
  font-weight: 400;
  width: calc(100% - 36px);
  margin-bottom: 16px;
  border-radius: var(--border-radius);
}
/* .timings-info li:first-child{
  flex: 0 0 90px;
}
.timings-info li:nth-child(1){
  flex: 0 0 90px;
} */
.min-w-0 {
  min-width: auto;
}
.modifiers-add ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modifiers-add ul li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.modifiers-add ul li:not(:last-child) {
  border-bottom: 1px solid rgba(245, 246, 247, 1);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.modifiers-add ul li .add-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.modifiers-add ul li .add-left i {
  color: rgba(98, 108, 112, 1);
}
.modifiers-add ul li .add-left span {
  color: var(--main-color);
  font-size: 0.875rem;
  font-weight: 500;
}
.cursor-pointer {
  cursor: pointer;
}
.btn-nobg {
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--main-color);
  background: none;
  border: none;
}
.nodata-bulkupload .drag-n-drop {
  max-width: 610px;
  margin: 0 auto;
  text-align: center;
}
.nodata-bulkupload .drag-n-drop h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 0;
}
.nodata-bulkupload .filesize {
  font-size: 12px;
  font-weight: 400;
  color: rgba(74, 81, 84, 1);
  text-align: center;
  margin: 24px 0 0 0;
}
.nodata-bulkupload .custom-file {
  padding: 10px 14px;
  background: rgba(214, 227, 255, 1);
  border: 1px solid rgba(214, 227, 255, 1);
}
.nodata-bulkupload .custom-file label:hover {
  background: rgba(214, 227, 255, 1);
}
.nodata-bulkupload {
  padding: 90px 0;
}
.ohp-tabs {
  background: #fff;
  /* padding: 32px 24px; */
}
.ohp-tabs .nav-tabs {
  flex-wrap: nowrap;
}
.ohp-tabs .nav-tabs li {
  padding-right: 24px;
}
.ohp-tabs .nav-tabs li .nav-link {
  padding: 0 0 10px 0;
  font-weight: 500;
  font-size: 1rem;
  color: rgba(98, 108, 112, 1);
  border: none;
  border-bottom: 2px solid transparent;
}
.ohp-tabs .nav-tabs li .nav-link:hover {
  border: none;
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
}
.ohp-tabs .nav-tabs li .nav-link.active {
  border-color: transparent;
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
  font-weight: 600;
}
.ohp-tabs .tab-content {
  padding: 16px 0 32px 0;
}
.tabs-filters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
/* .ohp-tabs .tab-content .tabs-filters .form-control{
  min-width: 180px;
  max-width: 180px;
} */
.tabs-filters .form-group .form-select {
  padding-right: 28px;
}
.form-icon-left {
  position: relative;
}
.form-icon-left .form-control {
  padding-left: 35px;
}
.form-icon-left .input-icon {
  position: absolute;
  top: 8px;
  left: 12px;
  color: rgb(153 153 154);
}
.filterbtns {
  display: flex;
  gap: 16px;
}
.btn-filter {
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--main-color);
  border: none;
  background: inherit;
}

.btn-find {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--main-color-75);
  border-radius: var(--border-radius);
}

.purchase-table table {
  border-collapse: separate;
  border-radius: var(--border-radius-card);
  border: 1px solid #e5e7eb;
}
.purchase-table thead th {
  padding: 8px 16px;
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(249, 250, 251, 1);
}
.purchase-table tbody td {
  border-bottom: none;
  padding: 12px 16px;
  vertical-align: middle;
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
}
.purchase-table-rewards table {
  /* border-collapse: separate; */
  border-radius: var(--border-radius-card);
  border: 1px solid #e5e7eb;
}
.purchase-table-rewards thead th {
  padding: 8px 16px;
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(249, 250, 251, 1);
}
.purchase-table-rewards tbody td {
  /* border-bottom: none; */
  padding: 12px 16px;
  vertical-align: middle;
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
}
.consumerlsittable tbody td {
  border-bottom: 1px solid #e5e7eb !important;
}
.consumerlsittable tbody tr:last-child td {
  border-bottom: none !important;
}
.purchase-table tbody td .form-control {
  max-width: 140px;
}
.purchase-table-rewards tbody td .form-control {
  max-width: 140px;
}
.purchaseorder-view .order-title {
  text-align: right;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.purchaseorder-view .order-title ul li {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(74, 81, 84, 1);
  /* padding-bottom: 2px; */
}
/* .purchaseorder-view .order-title ul li:first-child{
  font-weight: 600;
  color: rgba(25, 27, 28, 1);
} */
.purchaseorder-view .order-billto {
  margin: 18px 0;
  background: rgba(249, 250, 251, 1);
  padding: 14px;
  border-radius: var(--border-radius);
}
.purchaseorder-view .order-billto .billto-title {
  color: rgba(123, 135, 140, 1);
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.purchaseorder-view .order-billdetails {
  justify-content: space-between;
  display: flex;
  gap: 14px;
  text-align: left !important;
}
.purchaseorder-view .purchase-table thead th {
  padding: 8px 10px;
  font-size: 0.625rem;
}
.purchaseorder-view .purchase-table tbody td {
  border-bottom: 1px solid #e5e7eb;
}
/* .purchaseorder-view .purchase-table table{
  padding-bottom: 100px;
} */
.purchaseorder-view .purchase-table tfoot tr:not(:first-child) th {
  border-left: 1px solid #e5e7eb;
  min-width: 100px;
}
.purchaseorder-view .purchase-table tfoot tr td:last-child {
  text-align: right;
}
.purchaseorder-view .purchase-table thead th {
  padding: 8px 10px;
  font-size: 0.625rem;
}
.purchaseorder-view .purchase-table-rewards tbody td {
  border-bottom: 1px solid #e5e7eb;
}
/* .purchaseorder-view .purchase-table table{
  padding-bottom: 100px;
} */
.purchaseorder-view .purchase-table-rewards tfoot tr:not(:first-child) th {
  border-left: 1px solid #e5e7eb;
  min-width: 100px;
}
.purchaseorder-view .purchase-table-rewards tfoot tr td:last-child {
  text-align: right;
}
.purchaseorder-view .table > :not(caption) > * > * {
  border: none;
}
#rewards-accordion .accordion-item {
  border: 1px solid rgba(229, 231, 232, 1);
  padding: 16px;
  border-radius: var(--border-radius);
}
#rewards-accordion .accordion-item .accordion-button {
  padding: 0;
  background: #fff;
  border: none;
  box-shadow: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(25, 27, 28, 1);
}
#rewards-accordion .accordion-body {
  padding: 24px 0;
}
.w-200 {
  width: 200px;
}
.choose-rewards .choose-rewards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.choose-rewards .choose-rewards-list .form-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.choose-rewards .choose-rewards-list .form-group label {
  white-space: nowrap;
  padding: 0;
}
.choose-rewards .choose-rewards-list .form-group .input-group {
  max-width: 112px;
}
.rewards-border {
  padding: 24px;
  border: 1px solid rgba(229, 231, 232, 1);
  border-radius: 6px;
}
.tableaction {
  display: flex;
  gap: 8px;
}
.select-rewards {
  display: flex;
  gap: 40px;
}
.select-rewards .reward-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(229, 231, 232, 1);
  border-radius: 6px;
  flex: 1;
}
.select-rewards .reward-item.selected {
  border: 1px solid var(--main-color);
}
.select-rewards .reward-item figure img {
  width: 40px;
}
.select-rewards .reward-item .reward-titles h4 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(25, 27, 28, 1);
  margin-bottom: 8px;
}
.select-rewards .reward-item .reward-titles p {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(25, 27, 28, 1);
  margin: 0;
}

.reward-select-items .list-items {
  display: flex;
  justify-content: space-between;
}
.reward-select-items .list-items-li:not(:last-child) {
  margin-bottom: 45px;
}
.reward-select-items .list-items .item-name {
  display: flex;
  gap: 8px;
  align-items: center;
}
.reward-select-items .list-items .item-name figure {
  margin: 0;
}
.reward-select-items .list-items .item-name figure img {
  width: 20px;
  position: relative;
  top: -2px;
}
.reward-select-items .list-items .item-name figure img.diningImg {
  width: 24px;
}
.rewardstoggle-title {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  color: rgba(25, 27, 28, 1);
}
.rewards-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.addcampaign,
.addcampaign svg {
  color: var(--main-color);
}
.addcampaign span {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.gap-top {
  padding-top: 20px;
}
.campaign-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.campaign-selection .form-group {
  min-width: 210px;
}
.list-contact {
  display: flex;
  gap: 10px;
}
.list-contact figure {
  margin: 0;
}
.list-contact img {
  width: 32px;
}
.list-contact .contact-titles h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 6px;
}
.list-contact .contact-titles p {
  font-size: 0.75rem;
  font-weight: 5400;
  color: rgba(74, 81, 84, 1);
  margin-bottom: 0;
}
.consumer-download .dropdown-toggle::after {
  display: none;
}
.preview-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.preview-section .preview-left {
  display: flex;

  gap: 24px;
}
.preview-section .preview-left figure img {
  width: 56px;
}
.preview-section .preview-titles h4 {
  font-size: 1.375rem;
  font-weight: 600;
  color: rgba(25, 27, 28, 1);
  margin-bottom: 8px;
}
.preview-section .preview-titles ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.preview-section .preview-titles ul li {
  font-size: 1rem;
  color: rgba(98, 108, 112, 1);
}
.preview-section .preview-titles ul li .bi {
  margin-right: 8px;
}
.preview-section .preview-right {
  margin-left: 70px;
}
.preview-section .preview-right span {
  background-color: var(--main-color-75);
  color: var(--main-color);
  padding: 6px 16px;
  display: flex;
  border-radius: 100px;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
}
.preview-section .preview-right span svg {
  margin-right: 8px;
  color: var(--main-color);
}
.preview-states ul {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: rgba(249, 250, 251, 1);
  border-radius: var(--border-radius);
}
.preview-states ul li {
  border-right: 1px solid rgba(229, 231, 232, 1);
  width: 20%;
  padding: 24px;
}
.preview-states ul li:last-child {
  border-right: none;
}
.preview-states ul li span {
  display: block;
}
.preview-states ul li span:first-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(98, 108, 112, 1);
  margin-bottom: 6px;
}
.preview-states ul li span:last-child {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(25, 27, 28, 1);
}
.preview-table .preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.preview-table .preview-header .card-title {
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 600;
}
.preview-table div#datatable_info {
  color: var(--text-color);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.preview-table ul.pagination-common-style {
  justify-content: flex-end;
}
.preview-table ul.pagination-common-style li a {
  width: 30px;
  height: 30px;
  color: #283c50;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-input);
  transition: all 0.3s ease;
  border: 1px solid #e8eaf2;
}
.preview-table ul.pagination-common-style li a.active,
ul.pagination-common-style li a:hover {
  color: #fff !important;
  background-color: #004fff;
  transition: all 0.3s ease;
}
.user-role-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.user-role-header .add-store-title {
  margin-bottom: 0 !important;
}
.user-role-header select {
  color: var(--main-color);
  border: none;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
}
.preview-table {
  overflow: inherit;
}
.tax-list-btm {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.custom-error {
  position: relative;
}
.custom-error .text-error {
  top: 100%;
  left: 0;
}
.reports-filter-top {
  padding: 18px 0;
}
.hiddeninput {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -9999px;
}
.ant-table-empty tbody tr td {
  padding: 0 !important;
  border-bottom: none !important;
}
/* .ohp-timepicker{

} */
.menu-header {
  flex-direction: column;
  align-items: flex-start !important;
  gap: 16px;
}
.menu-header-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  width: 100%;
}
.actionmodal {
  width: 100%;
  max-width: 400px;
}
.actionmodal .ant-modal-content .ant-modal-body {
  border: none;
}
.actionmodal .action-icon span {
  width: 40px;
  height: 40px;
  display: flex;

  border-radius: 100px;
  align-items: center;
  justify-content: center;
}
.delete-icon span {
  background: rgba(217, 45, 32, 1);
  color: #fff;
}
.sucess-icon span {
  background: rgba(20, 186, 109, 1);
  color: #fff;
}
.actionmodal .action-icon span svg {
  color: #fff;
}
.action-titles {
  margin: 16px 0 24px 0;
}
.actionmodal .action-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(49, 54, 56, 1);
  line-height: 1.6;
}
.actionmodal .action-title p {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(74, 81, 84, 1);
  margin: 8px 0 0 0;
}
.actionmodal .actions-btns {
  display: flex;
  gap: 16px;
}
.actionmodal .actions-btns .btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(49, 54, 56, 1);
  border: 1px solid rgba(202, 207, 209, 1);
  border-radius: var(--border-radius);
}
.actionmodal .actions-btns .action-remove {
  /* background: var(--main-color); */
  background-color: #d92d20ff;
  border: var(--main-color);
  color: #fff;
}
.filter-noborder .multi-select-dropdown {
  width: auto;
}
.filter-noborder .multi-select-dropdown .ant-select {
  width: auto !important;
}
.filter-noborder .ant-select {
  border: none;
}
.filter-noborder .ant-select .ant-select-selector {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.filter-noborder .ant-select .ant-select-selection-placeholder {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(25, 27, 28, 1);
}
.filter-noborder .ant-select .ant-select-arrow {
  position: relative;
  margin-top: -5px;
}
.filter-noborder .ant-select .ant-select-arrow svg {
  color: var(--main-color);
  width: 24px;
  height: 24px;
}
.ant-input-number-group-wrapper .ant-input-number-group {
  position: relative;
  border: 1px solid #e0e2e7;
  padding: 3px;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(123, 135, 140, 1);
  line-height: inherit;
  height: 32px;
  max-width: 116px;
}
.ant-input-number-group-wrapper .ant-input-number-group-addon {
  background: rgba(245, 246, 247, 1);
  border: none;
  padding: 8px;
  min-width: 34px;
  display: flex;
  justify-content: center;
  border-radius: 6px 0 0 6px;
}
.ant-input-number-group-wrapper .ant-input-number-outlined {
  border: none;
}
.ant-input-number-group-wrapper .ant-input-number-group-addon svg {
  color: rgba(49, 54, 56, 1);
  width: 16px;
}
.ant-input-number-group-wrapper .ant-input-number {
  vertical-align: middle;
}
.ant-input-number-group-wrapper .ant-input-number:focus {
  box-shadow: none;
}
.ant-input-number-group-wrapper .ant-input-number-input {
  padding: 0px 11px;
  vertical-align: middle;
}
.multi-drop-fullwidth .multi-select-dropdown {
  width: 100%;
}
.multi-select-dropdown .ant-select {
  width: 100% !important;
}
.addprodutmodal .addproduct-title {
  display: flex;
  justify-content: space-between;
}
.addprodutmodal .addproduct-title {
  display: flex;
  justify-content: space-between;
}
.addprodutmodal .addproduct-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.addprodutmodal .addproduct-title .form-group {
  flex: 1;
}
.addprodutmodal .addproduct-title .btn-primary-outline {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  gap: 4px;
}
.addproduct-list .list-title {
  margin: 24px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(229, 231, 232, 1);
  display: flex;
  justify-content: space-between;
}

.addproduct-list .list-title h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(25, 27, 28, 1);
}
.product-listitem {
  max-height: 300px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(224, 226, 231, 1) #fff;
}
.product-listitem li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.product-listitem li .form-check {
  align-items: flex-start;
}
/* .product-listitem li:last-child{
  margin-bottom: 0;
} */
.product-listitem li span:first-child {
  color: rgba(25, 27, 28, 1);
  font-size: 0.875rem;
  font-weight: 400;
}
.ant-table table .ant-table-thead tr th[style] .ant-table-column-sorters {
  flex-direction: row-reverse;
}
.modifiers-add {
  user-select: none;
}
.bi-grip-vertical {
  cursor: grab;
}
.font-14 {
  font-size: 0.875rem;
  font-weight: 500;
}
.th-modifiers {
  display: flex;
  align-items: center;
  gap: 8px;
}
.modifiers-table thead tr th {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(98, 108, 112, 1);
  padding: 12px 8px 0;
}
.modifiers-table tbody tr td {
  padding: 12px 8px;
}
.modifiers-table tbody tr td .form-control {
  height: 40px;
}
.modifiers-table .tr-childitem .th-modifiers {
  padding-left: 85px;
}
.anticon-calendar svg {
  color: #000;
}
.form-prefix {
  display: flex;
  gap: 8px;
}
.form-prefix .ant-picker-prefix {
  margin: 0;
}
.form-prefix .ant-picker-prefix svg {
  margin-top: -2px;
}
.form-prefix .ant-picker-input input {
  line-height: inherit;
}
.form-prefix .ant-picker-suffix {
  display: none;
}
.help-section {
  padding: 32px;
}
.help-section .help-title {
  text-align: center;
  padding: 20px 0;
}
.help-section .help-title h3 {
  font-size: 3rem;
  color: rgba(25, 27, 28, 1);
  font-weight: 600;
  margin: 0;
}
.help-section .help-title p {
  font-size: 1.25rem;
  color: rgba(98, 108, 112, 1);
  font-weight: 400;
  margin: 24px 0 40px 0;
}
.help-section .help-title .form-group .input-addon {
  position: absolute;
  top: 8px;
  left: 12px;
  color: rgba(123, 135, 140, 1);
}
.help-section .help-title .form-group .form-control {
  padding-left: 40px;
}
.help-queries .queries-list {
  margin: 40px 0 24px 0;
}
.help-queries .queries-list h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(25, 27, 28, 1);
}
.help-queries .queries-list p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  color: rgba(98, 108, 112, 1);
}
.help-section .still-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 32px;
  border-radius: 16px;
  background: rgba(249, 250, 251, 1);
}
.help-section .still-question h5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(25, 27, 28, 1);
}
.help-section .still-question p {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(98, 108, 112, 1);
}
.help-section .still-question .btn {
  color: rgba(255, 255, 255, 1);
  padding: 7px 14px;
  min-width: 110px;
  border-radius: var(--border-radius);
}
.reset-btn {
  color: var(--main-color);
  padding: 0;
  font-size: 0.875rem;
  font-weight: 400;
  border: none;
  background: none;
}
.inventory-invoice .card .card-header .card-title {
  text-transform: capitalize;
  font-size: 1.375rem;
  font-weight: 600;
}
.ant-table table .ant-table-thead tr th:has(.ant-checkbox-wrapper) {
  max-width: 10% !important;
  width: 1%;
  min-width: 48px;
}
.customtimepicker-icon {
  position: relative;
}
.customtimepicker-icon svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.customtimepicker-icon .customtimepicker-input {
  padding-left: 38px !important;
}
.scroll-250 {
  max-height: 250px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(224, 226, 231, 1) #fff;
}
.scroll-500 {
  max-height: 500px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(224, 226, 231, 1) #fff;
}
@media (max-width: 575.98px) {
  .nxl-header .header-wrapper {
    padding: 0 16px;
  }

  .nxl-header .header-wrapper .nxl-h-item {
    position: static;
  }

  .nxl-header .header-wrapper .nxl-level-menu .dropdown-menu {
    left: 0;
    display: block;
    padding-left: 30px;
  }

  .card {
    margin-bottom: 20px;
  }

  .mega-menu #mega-menu-dropdown.dropdown-menu {
    width: 100%;
    margin: auto;
    left: 0;
  }

  /* .mega-menu>a.btn span+span {
    display: none;
  } */

  .nxl-header .header-wrapper .user-avtar + span {
    display: none;
  }

  .btngroup {
    margin-top: 14px;
    width: 100%;
    row-gap: 10px;
  }

  .custom-header .form-group input,
  .custom-header .form-group {
    width: 100% !important;
  }

  .btngroup .form-group input,
  .btngroup .form-group {
    width: 100% !important;
  }

  .btngroup .btn {
    width: 100%;
  }

  .card .custom-header,
  .store-information .card-header,
  .card-header,
  .menu-header-top {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .brand-image {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .integration-wrap .integration-list {
    flex-direction: column;
  }
  .tax-list-btm {
    flex-direction: column;
  }
  .barcodes-filter .filters-dropdown {
    flex-wrap: wrap;
  }
}

@media (min-width: 576px) {
  .nxl-user-dropdown .dropdown-menu.show {
    display: block;
    left: -225px !important;
    top: -10px !important;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .card .custom-header .btngroup .btn {
    padding: 6px 10px;
  }
}

@media (max-width: 767.98px) {
  .nxl-header .header-wrapper .nxl-h-item {
    position: static;
  }

  .mega-menu button.btn {
    font-size: 14px;
  }

  .mega-menu button svg {
    width: 16px;
  }

  .nxl-header .header-wrapper .nxl-h-item {
    margin-right: 0;
    border: none !important;
  }

  .datePickerVIew p {
    font-size: 14px;
  }

  .dropdown.nxl-mega-menu {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .multi-select-dropdown {
    width: 100% !important;
  }

  .datePickerVIew {
    width: 100%;
  }
  .datePickerVIew input {
    width: 100%;
  }
  .datePickerVIew .rmdp-container {
    width: 100%;
  }

  .product-group-table .card-header.product {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .productSearch .has-search {
    margin-top: 15px;
  }

  .product-group-table .card-header .btn-add-product {
    margin-top: 15px;
  }

  .account-settings .account-details.card {
    padding: 20px 15px;
  }

  .custom-tabs .nav-tabs .nav-link {
    margin-right: 20px;
    font-size: 1rem;
  }
  .custom-tabs .nav-tabs {
    padding-bottom: 2px;
  }

  .details-fileds .custom-form-group .form-control {
    margin-bottom: 14px;
  }

  .account-settings .details-tabs .tab-content .custom-form-group .label-span {
    margin-bottom: 8px;
  }

  .account-settings .tab-content .profile-img {
    grid-column-gap: 24px;
  }

  .account-settings .tab-content .profile-img .drag-n-drop {
    padding: 8px;
  }

  .account-settings .tab-content .profile-img .drag-n-drop p {
    font-size: 10px;
  }

  .mobile-inputs .custom-form-group {
    margin-bottom: 24px;
  }

  .mobile-inputs .custom-form-group:last-child {
    margin-bottom: 5px;
  }

  .search-filters,
  .search-filter-right,
  .transaction-search {
    flex-wrap: wrap;
    width: 100%;
  }

  .titles-search {
    align-items: flex-end !important;
  }

  .search-filter-right .form-group,
  .search-filter-right .form-group .form-control {
    width: 100% !important;
  }

  /* .filter-right-download {
    width: 100%;
  } */

  .store-information .btngroup .form-control {
    width: 100% !important;
  }

  .nxl-container .nxl-content .main-content {
    padding: 18px 16px;
  }

  .login-wrapper .login-titles {
    padding: 45px 25px;
  }

  .login-wrapper .login-titles.welcome-login {
    height: 450px;
  }

  .nxl-container-wrap .submenu-nav {
    width: 280px;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: auto;
    position: fixed;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nxl-container-wrap .submenu-nav.popup-open {
    display: block;
    animation: slideIn 0.5s forwards ease-out;
    opacity: 1 !important;
  }

  @keyframes slideIn {
    0% {
      left: -100%;
    }

    100% {
      left: 0;
    }
  }

  .nxl-container-wrap .submenu-nav.popup-closing {
    animation: slideOut 0.9s forwards ease-out;
    opacity: 0;
  }

  @keyframes slideOut {
    0% {
      left: 0;
    }

    100% {
      left: -100%;
    }
  }

  .nxl-container .nxl-container-wrap .nxl-content {
    width: 100%;
  }

  .login-wrapper .fields-data .otp-steps li {
    font-size: 14px;
  }

  /* .btngroup {
    grid-column-gap: 10px;
    margin-top: 14px;
} */
  .btngroup .btn {
    font-size: 13px;
  }

  .page-header .breadcrumb .breadcrumb-item {
    font-size: 12px;
  }

  .nxl-header .header-wrapper {
    padding: 0 16px;
  }
  .custom-scroll-container {
    max-height: 160px;
  }
  .account-settings .details-tabs .tab-content .form-group {
    margin-bottom: 24px;
  }
  .account-settings .tab-content .profile-img .drag-n-drop .btn-upload {
    display: block;
  }
  .account-settings .tab-content .top-info .notification {
    gap: 20px;
    flex-direction: column;
  }
  .account-settings .tab-content .brdr-top {
    padding-top: 24px;
  }
  .account-settings .account-details .custom-tabs {
    margin-top: 32px;
  }
  .timings-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .timings-wrap .form-group {
    width: 100%;
  }
  .timings-wrap .date-to,
  .timings-wrap .appalldays {
    padding-top: 0;
  }
  .addtimings-wrap {
    flex-direction: column;
    gap: 12px;
  }
  .addtimings-wrap .weekday li:first-child {
    flex: 0 0 150px;
  }
  .addtimings-wrap .form-addon {
    min-width: auto;
  }
  /* .addtimngsmodal .addtimings-wrap .btnclosed{
    width: auto;
  } */
  .addtimngsmodal {
    width: auto !important;
  }
  .nodata-bulkupload {
    padding: 40px 0;
  }
  .ohp-tabs .nav-tabs li {
    padding-right: 14px;
  }
  .select-rewards .reward-item {
    padding: 12px;
  }
  .campaign-selection .form-group {
    min-width: 210px;
    width: 100%;
  }
  .rewards-border {
    padding: 14px;
  }
  .select-rewards {
    gap: 20px;
    flex-wrap: wrap;
  }
  .preview-states ul {
    flex-wrap: wrap;
  }
  .preview-states ul li {
    border-bottom: 1px solid rgba(229, 231, 232, 1);
    border-right: none;
    width: 100%;
    padding: 12px;
  }
  .reward-section .rewards-prgm {
    flex-direction: row;
  }
  .reward-section .titles-search {
    align-items: center !important;
  }
  .reward-section .titles-search .form-group {
    width: 100%;
  }
  .preview-section .preview-titles ul {
    margin-top: 12px;
    gap: 8px;
  }
  /* .help-section .help-title h3{font-size: 1.5rem;} */
  .help-section .help-title p {
    margin: 14px 0 20px 0;
    font-size: 1rem;
  }
  .help-queries .queries-list {
    margin: 20px 0;
  }
  .help-section .still-question {
    padding: 20px 0;
  }
  .help-section .still-question h5,
  .help-section .still-question p {
    font-size: 1rem;
  }
  .card .card-header {
    padding: 16px;
    min-height: auto;
  }
  .card .card-body,
  .quickLinks {
    padding: 16px;
  }
  .card .card-body {
    padding-top: 0;
  }
  .revenue-summary-table .ant-descriptions-view tr th {
    padding: 8px 5px !important;
  }
  .revenue-summary-table .ant-descriptions-view tr td {
    padding: 12px 5px !important;
    width: 50%;
  }
  .ant-table-wrapper .ant-table-pagination.ant-pagination {
    justify-content: center;
  }
  .ant-table-wrapper .ant-pagination .ant-pagination-options {
    width: 100%;
    justify-content: center;
    margin: 4px 0;
  }
  .ant-table-wrapper .ant-pagination .ant-pagination-item,
  .ant-pagination .ant-pagination-next,
  .ant-pagination .ant-pagination-prev,
  .ant-pagination .ant-pagination-jump-next {
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    line-height: normal;
    font-size: 13px;
  }
  .ant-pagination .ant-pagination-total-text {
    font-size: 13px;
  }
  .ant-pagination .ant-select .ant-select-selector,
  .ant-pagination-options-quick-jumper input {
    height: 30px !important;
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .rmdp-day,
  .rmdp-week-day {
    height: 40px !important;
    position: relative;
    width: 40px !important;
  }

  .nxl-container .nxl-container-wrap .settings-wrapper {
    width: calc(100% - 200px);
  }

  .nxl-container .nxl-container-wrap {
    display: flex;
  }
  .revenue-summary-table .ant-descriptions-view tr th {
    padding: 8px 16px !important;
  }
  .revenue-summary-table .ant-descriptions-view tr td {
    padding: 12px 16px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .login-wrapper .login-titles {
    padding: 50px 25px;
  }

  .multi-select-dropdown {
    width: 180px;
  }

  .main-content .has-search .form-control {
    width: 130px;
  }

  .nxl-container-wrap .submenu-nav ul li {
    padding: 6px 16px;
    margin-bottom: 4px;
  }
  .custom-scroll-container {
    max-height: 200px;
  }
  .campaign-selection .form-group {
    min-width: 150px;
  }
}

@media (max-width: 991.98px) {
  .nxl-header .header-wrapper .nxl-h-item > a {
    border: 0px !important;
    margin: 0px !important;
    padding: 0px !important;
  }
}

@media (min-width: 992px) {
  .pr-24 {
    padding-right: 24px;
  }

  .pl-24 {
    padding-left: 24px;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  .login-wrapper .login-titles {
    padding: 55px 65px 100px 65px;
  }

  .nxl-container-wrap .submenu-nav ul li {
    padding: 6px 16px;
    margin-bottom: 4px;
  }
  .custom-scroll-container {
    max-height: 250px;
  }
}

@media (min-width: 1401px) {
  .login-wrapper .login-titles {
    padding: 75px 65px 140px 65px;
  }
}

@media (max-width: 1400px) {
  .header-custom-dropdown
    .ant-select-selector
    .ant-select-selection-placeholder {
    font-size: 18px !important;
  }
  .help-section .help-title h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .nxl-header {
    top: 0;
    left: 0 !important;
    transition: all 0.15s ease-in-out;
  }

  .nxl-header .nxl-head-link {
    display: inline-flex;
  }

  .nxl-header .nxl-head-link#mobile-collapse {
    position: absolute;
    left: 15px;
  }

  .nxl-header .nxl-head-mobile-toggler {
    display: inline-flex;
    background: none;
    border: none;
  }

  .nxl-header .nxl-navigation-toggle {
    display: none;
  }

  .nxl-header .header-wrapper .nxl-navigation-toggle {
    display: none;
  }

  .nxl-navigation {
    left: -280px;
    box-shadow: none;
    transition: all 0.15s ease-in-out;
  }

  .nxl-navigation.mob-navigation-active {
    left: 0 !important;
  }

  .nxl-navigation.mob-navigation-active .navbar-wrapper {
    position: relative;
    z-index: 5;
    background: inherit;
  }
  html.minimenu .nxl-navigation .navbar-content .nxl-mtext {
    display: inline-block;
    transition: all 0.1s ease;
  }
  html.minimenu .nxl-navigation .navbar-content {
    position: absolute !important;
    width: 280px;
    background-color: var(--theme-bg-color);
    border-right: 1px solid #e5e7eb;
    transition: all 0.3s ease;
  }
  html.minimenu .nxl-navigation .navbar-content .nxl-navbar .nxl-link {
    width: 100%;
  }
  html.minimenu .nxl-navigation .nxl-arrow {
    display: block;
  }

  .minimenu .nxl-header {
    left: 0 !important;
  }

  .minimenu .nxl-container {
    margin-left: 0;
  }

  .nxl-navigation .m-header {
    overflow: visible;
  }

  .nxl-navigation .m-header img.logo.logo-lg {
    margin-top: 80px;
  }

  .nxl-container {
    margin-left: 0;
  }
}

@media (min-width: 1024px) {
  .nxl-head-mobile-toggler {
    display: none;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 14px !important;
  }
}

@media (min-width: 1660px) {
  html {
    font-size: 16px !important;
  }
}

@media (min-width: 2000px) {
  html {
    font-size: 16px !important;
  }
}

@media (min-width: 3000px) {
  html {
    font-size: 18px !important;
  }
}

@media (max-width: 1199.98px) {
  .has-search .form-control {
    width: 200px;
  }

  .nxl-header .header-wrapper .nxl-navigation-toggle {
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px !important;
    padding: 0;
  }

  /* .nxl-header .header-wrapper .nxl-lavel-mega-menu-toggle i,
  .nxl-header .header-wrapper .nxl-navigation-toggle svg {
    font-size: 20px;
    line-height: 23px;
  } */
}

/* .card-body:has(.ant-table-container) {
  padding-top: 0;
} */
.customtimepicker-icon {
  position: relative;
  width: 100%;
  /* padding-left: 30px; */
}
.ant-upload-list-item {
  max-height: 72px;
  max-width: 72px;
  min-height: 72px;
  min-width: 72px;
}
.ant-upload-list-item-container {
  height: 80px !important;
  width: 80px !important;
}
.ohp-table {
  border-collapse: separate;
  border-radius: var(--border-radius-card);
  border: 1px solid #e5e7eb;
  background: rgba(249, 250, 251, 1);
}
.ohp-table tr th {
  padding: 8px 16px;
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.ohp-table tr td {
  padding: 12px 16px;
  vertical-align: middle;
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
  vertical-align: middle;
  background: #fff;
}

.onlineprice-input .ant-input-group-wrapper .ant-input-group {
  position: relative;
  border: 1px solid #e0e2e7;
  padding: 3px;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(123, 135, 140, 1);
  line-height: inherit;
  /* height: 32px; */
  max-width: 116px;
  display: flex;
}
.onlineprice-input .ant-input-group-wrapper .ant-input-group-addon {
  background: rgba(245, 246, 247, 1);
  border: none;
  padding: 8px;
  min-width: 34px;
  display: flex;
  justify-content: center;
  border-radius: 6px 0 0 6px;
}
.onlineprice-input .ant-input-group-wrapper .ant-input-outlined {
  border: none;
}
.onlineprice-input .ant-input-group-wrapper .ant-input-group-addon svg {
  color: rgba(49, 54, 56, 1);
  width: 16px;
}
.onlineprice-input .ant-input-group-wrapper .ant-input {
  vertical-align: middle;
}
.onlineprice-input .ant-input-group-wrapper .ant-input:focus {
  box-shadow: none;
}
.onlineprice-input .ant-input-group-wrapper .ant-input {
  padding: 0px 11px;
  vertical-align: middle;
}
.ohp-table.table > :not(caption) > * > * {
  box-shadow: none;
  border: none;
}
.access-role {
  display: flex;
  gap: 12px;
}
.access-role .form-check {
  margin-bottom: 0 !important;
}
.access-role .form-check .form-check-input {
  margin: 0 8px 0 0 !important;
}

.reward-select-items .list-items .item-name figure img {
  width: 20px;
  position: relative;
  top: -2px;
}
svg.feather.feather-x-circle {
  color: #b5b2b2;
}
svg.feather.feather-x-circle:hover {
  color: #000;
}

.integration-platform svg.feather.feather-x-circle {
  color: #b5b2b2;
}
.integration-platform svg.feather.feather-x-circle:hover {
  color: #000;
}
.bulkupload-progress h4 {
  color: rgba(25, 27, 28, 1);
  font-size: 1rem;
  font-weight: 600;
  margin: 24px 0 16px 0;
}
.bulkupload-progress .btn-cancel {
  border: 1px solid rgba(202, 207, 209, 1);
  background: #fff;
  border-radius: var(--border-radius);
  padding: 8px 14px;
  color: rgba(74, 81, 84, 1);
  font-size: 0.875rem;
  font-weight: 600;
}
.bulkupload-progress .drag-n-drop {
  background: #fff;
  border: 1px dashed rgba(153, 184, 255, 1);
}
.bulkupload-preview .btn-remove {
  background: none;
  border: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  gap: 8px;
  color: rgba(25, 27, 28, 1);
  font-size: 0.875rem;
  font-weight: 400;
}
.bulkupload-preview .btn-remove .bi {
  color: #f00;
}
.bulkupload-preview .btn-primary {
  padding: 8px 14px;
}
.uploadbtns-btm {
  border-top: 1px solid rgba(229, 231, 232, 1);
  padding-top: 24px;
  justify-content: flex-end;
}
.revenue-summary-table .ant-descriptions-view tr th {
  color: var(--text-color) !important;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(249, 250, 251, 1);
}
.revenue-summary-table .ant-descriptions-view tr td {
  vertical-align: middle;
  color: var(--text-color) !important;
  font-size: 0.95rem;
  font-weight: 500;
  vertical-align: top;
}
.rmdp-time-picker .rmdp-arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}
.rmdp-time-picker .rmdp-arrow-container .rmdp-arrow {
  margin: 0;
}
.rmdp-time-picker .rmdp-arrow-container.rmdp-up .rmdp-arrow {
  margin-top: 2px;
}

.exceptional-report-table {
  border: 1px solid #e9e9e9;
}
table.exceptional-report-table th {
  text-align: center;
  padding: 10px;
  color: #999797;
}
table.exceptional-report-table td {
  padding: 0;
}
table.exceptional-report-table ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
table.exceptional-report-table ul li {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #e9e9e9;
  color: #000000;
  &:last-child {
    border: 0;
  }
}

.dropDownError {
  display: block;
  margin-top: -24px;
}

.btn-secondary-outline {
  border: 1px solid #e0e2e7 !important;
  color: #e0e2e7 !important;
}
.btn-secondary-outline svg {
  stroke: #e0e2e7 !important;
}
.barcodes-filter .filters-dropdown {
  display: flex;
  align-items: center;
  gap: 24px;
}
.barcodes-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.barcodes-filter .filters-dropdown .ohp-radio {
  min-width: auto;
}
.barcodes-filter .filters-dropdown select {
  min-width: 180px;
}
.barcodes-filter .filters-dropdown .ohp-radio .form-check-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #191b1c;
}
.btndownload {
  color: var(--main-color);
  font-size: 1rem;
  font-weight: 400;
  padding: 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btndownload svg {
  color: var(--main-color);
}
.barcode-input {
  margin-top: 24px;
}
.barcode-input .input-group .input-group-text {
  background: #fff;
  border: 1px solid #004fff;
  margin: 0 !important;
  color: #004fff;
  font-size: 0.875rem;
  font-weight: 400;
}
.barcode-input .input-group .form-control {
  max-width: 375px;
}

.account-settings {
  .notification {
    display: block !important;
    max-width: 1000px;
    .n-items {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid #efefef;
      img {
        width: 60px;
        height: 60px;
        object-fit: cover;
      }
      p {
        margin: 0;
        font-size: 16px;
        font-weight: 500;
      }
      span {
        font-size: 11px;
      }
    }
  }
}
.titles-search {
  .multi-select-dropdown {
    .gray-clr {
      .ant-select-selection-placeholder {
        color: var(--main-color) !important;
      }
    }
    .black-clr {
      .ant-select-selection-placeholder {
        color: rgba(123, 135, 140, 1) !important;
      }
    }
  }
}

.multi-select-dropdown {
  .gray-clr {
    .ant-select-selection-placeholder {
      color: rgba(25, 27, 28, 1) !important;
    }
  }
  .black-clr {
    .ant-select-selection-placeholder {
      color: rgba(123, 135, 140, 1) !important;
    }
  }
}
.orderhistory-table {
  background: #fff;
  padding: 16px;
  border-radius: var(--border-radius);
  margin-top: 8px;
  .ant-table-wrapper {
    border-radius: var(--border-radius);
    border: 1px solid rgba(229, 231, 232, 1);
    .td-color {
      display: flex;
      align-items: flex-start;
      flex-direction: row-reverse;
      justify-content: flex-end;
      gap: 4px;
      word-break: break-all;
      svg {
        margin-top: 4px;
      }
    }
    .ant-table-body {
      .ant-table-expanded-row {
        .ant-table-cell {
          background: #fff;
          padding: 0;
          > div {
            padding: 0 100px;
            .ant-table-thead {
              tr {
                th {
                  background: #f5f6f7;
                  padding: 8px 16px;
                }
              }
            }
            .ant-table-tbody {
              tr {
                td {
                  background: #f5f6f7;
                  padding: 8px 16px;
                }
              }
            }
          }
        }
      }
    }
    .ant-table table {
      border: none;
      .ant-table-thead {
        tr {
          th {
            .ant-table-column-title {
              white-space: normal;
            }
          }
        }
      }
    }
    .ant-table-pagination.ant-pagination {
      margin: 24px;
    }
  }

  .ant-table table td:has(.anticon-down) {
    padding-left: 7px;
  }
}

.form-switch .form-check-input:disabled {
  opacity: 1;
}

.add-modifier-upload {
  .ant-upload-list-item {
    max-height: 49px;
    min-height: 49px;
    min-width: 49px;
    max-width: 49px;
    padding: 12px !important;
    transition: none !important;
    &::before {
      width: 100% !important;
      height: 100% !important;
      left: 0 !important;
      border-radius: 6px;
    }
  }
  .ant-upload-list-item-container {
    width: auto !important;
    height: auto !important;
  }
}

.invalid-bulkupload-row {
  background-color: #ffcccc;
}
.invalid-bulkupload-row:hover {
  background-color: #ffcccc;
}
.missing-field {
  color: red;
}
.generatecode-wrap {
  .barcode-listprice {
    margin-top: 64px;
    page-break-after: always;
    .label-block {
      /* display: flex;
        gap: 8px; */
      margin-bottom: 50px;
      li {
        flex: 1;
        text-align: center;
        h4 {
          font-size: 1rem;
        }

        h4 {
          font-size: 0.875rem;
          font-weight: 500;
          margin-bottom: 4px;
        }
        span {
          &.price {
            font-size: 1.125rem;
            font-weight: 800;
          }
          svg {
            max-width: 100%;
          }
        }
      }
    }

    &.listprice-rack {
      .label-block {
        flex-direction: column;
        display: flex;
        gap: 20px;
        text-align: center;
        margin-bottom: 50px;
        li {
          text-align: center;
          span {
            &.price {
              font-size: 1.75rem;
            }
          }
        }
      }
    }
  }
  &.barcodeprice {
    .barcode-listprice {
      margin-top: 64px;

      .label-block {
        /* align-items: center;
          gap: 50px; */
        /* margin-bottom: 0; */
        margin-bottom: 50px;
        li {
          span {
            &.price {
              font-size: 1.75rem;
            }
          }
        }
      }

      &.listprice-rack {
        .label-block {
          /* flex-direction: column;
            display: inline-flex; */
          li {
            span {
              &.price {
                font-size: 3rem;
              }
            }
          }
        }
      }
    }
  }
}
.nostore {
  color: var(--theme-text-color);
}
.userdropdown {
  .userdropdown-arrow {
    color: var(--theme-text-color);
  }
}
.chooseonmap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  span {
    color: var(--main-color);
    font-size: 0.938rem;
    font-weight: 500;
    cursor: pointer;
  }
}
.online-price-update-text {
  color: var(--main-color);
  font-size: 14px;
  padding-left: 10px;
}

.online-price-update-cancel-btn {
  cursor: "pointer";
  color: var(--main-color);
  margin-right: "20px";
}
.terminaltime .rmdp-container {
  padding-left: 30px;
}
.modiferaddplus svg {
  color: var(--main-color);
}
.ant-picker-dropdown
  .ant-picker-cell-in-view.ant-picker-cell-selected:not(
    .ant-picker-cell-disabled
  )
  .ant-picker-cell-inner {
  background-color: var(--main-color);
}

.userdropdown span {
  white-space: nowrap;
}
.confirmation-update-products {
  border: 1px solid var(--main-color-75);
  height: 40px;
  padding: 0px 15px 0 0;
  text-align: center;
  margin: 0px 0px 4px 0px;
  display: flex;
  justify-content: space-between;
  background-color: var(--main-color-75);
  border-radius: 5px;
  align-items: center;
}
.confirmation-update-products .online-price-update-text {
  margin-left: 10px;
}
.confirmation-update-price {
  border: 1px solid var(--main-color-75);
  height: 40px;
  padding: 0px 15px 0 0;
  text-align: center;
  margin: 0px 24px 4px 24px;
  display: flex;
  justify-content: space-between;
  background-color: var(--main-color-75);
  border-radius: 5px;
  align-items: center;
}
.confirmation-update-price .online-price-update-text {
  margin-left: 10px;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  background-color: var(--bs-btn-disabled-btns);
  border-color: var(--bs-btn-disabled-btns);
}

.onlineprice-input-taxincluded {
  margin-top: 4px;
  font-size: 12px;
  color: var(--main-color);
  display: flex;
  align-items: center;
  position: absolute;
}

.onlineprice-input-taxincluded span {
  padding-left: 5px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.Modifier-name-title {
  color: var(--main-color);
  cursor: "pointer";
  font-size: "14px";
}

.font-niagsol {
  font-family: "NIAGSOL";
}
.font-infia {
  font-family: "Inria Serif", serif;
}
.bigPrice {
  max-height: 150px;
}
.bigPrice tr td {
  border: 1px solid #444;
  padding: 5rem 5rem 4rem 5rem;
}
.bigPrice .bigprice tr td {
  border: none;
}

.store-information .field-info:has(.brand-image) {
  padding: 0;
}

.header-right > div .nxl-h-item:nth-child(4) {
  display: none !important;
}

.datePickerVIew input.single-date-picker {
  max-width: 130px;
  min-width: 130px;
}

.card-header.custom-header.scrolled {
  border-bottom: 1px solid #cccccc;
}

.autocomplete {
  border: 1px solid transparent;
  &:hover {
    border: 1px solid var(--main-color);
    .ant-select-selector {
      border: 1px solid transparent;
    }
  }
  &.ant-select-focused {
    .ant-select-selector {
      border: 1px solid transparent;
    }
  }
}

.autocomplete-input {
  border: none;
  font-size: 0.875rem;
  padding: 4px 0;
}

.slectTax:last-child {
  margin-bottom: 0px !important;
}
.onlyProduct.product-groupimage .drag-n-drop {
  min-height: 185px;
}
svg.feather.feather-plus {
  stroke: var(--main-color);
}
figure.imagebg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: var(--main-color-75);
  border-radius: var(--border-radius-input);

  svg {
    stroke: var(--main-color);
    width: 18px;
    path {
      fill: var(--main-color);
      stroke-width: 0px;
    }
  }
}

figure.imagebg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--main-color-75);
  border-radius: var(--border-radius-input);

  svg {
    stroke: var(--main-color);
    path {
      fill: var(--main-color);
      stroke-width: 0;
    }
  }
}

/* .rmdp-wrapper .rmdp-week .rmdp-range:first-child,
 .rmdp-wrapper .rmdp-week .rmdp-range:last-child,
 .rmdp-range-hover.end:not(.force), .rmdp-range.end:not(.force){
    border-radius: 100% !important;
 } */

.th-bg table th {
  background: transparent !important;
}
.tbody-scrollView table {
  margin-bottom: 54px;
}

.tbody-scrollView {
  &.withTable {
    colgroup {
      display: none;
    }
    table {
      margin: 0;
    }
    thead,
    tfoot {
      display: block;
      th {
        width: 100%;
      }
      td {
        padding: 16px 16px;
        background-color: rgba(0, 0, 0, 0.02);
        width: 100%;
      }
      tr {
        display: flex;
        width: 100%;
        justify-content: space-between;
      }
    }
    tbody {
      tr {
        position: static !important;
        td {
          width: 100%;
          background: transparent !important;
        }
      }
    }
  }
}

.tbody-scrollView thead,
.tbody-scrollView tfoot {
  display: block;
}
.tbody-scrollView tbody {
  display: block;
  max-height: 275px;
  overflow: auto;
  height: 275px;
  td {
    padding: 16px 16px;
  }
}

.tbody-scrollView tbody tr {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.tbody-scrollView tbody tr th {
  min-width: 270px;
}
.tbody-scrollView tbody tr:last-child {
  position: absolute;
  bottom: 26px;
}
.tbody-scrollView tbody tr:last-child th,
.tbody-scrollView tbody tr:last-child td,
.th-bg tr:last-child th,
.th-bg tr:last-child td {
  background-color: rgba(0, 0, 0, 0.02) !important;
}
.tableCardHeight .stretch.stretch-full {
  height: auto;
}
.tbody-scrollView ul.ant-pagination {
  display: none !important;
}
.brand-image .ant-upload-list-item-container {
  height: auto;
}
.min-w-150 {
  min-width: 150px;
}

.static-searc-icon svg {
  position: absolute;
  top: 11px;
  width: 18px;
  height: 18px;
  left: 12px;
}
.status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.activecrm {
  background-color: #e6fff2;
  color: #00b300;
}

.inactivecrm {
  background-color: #ffe6e6;
  color: #cc0000;
}
.addAggregator .platform-card .logo-name img {
  max-width: 50px;
  height: 50px;
  object-fit: contain;
}
.custom-stroke {
  stroke: #00b27f; 
}

.chart-bar-green {
  --chart-color: #00b27f;
}
.consumer-name {
  cursor: pointer;
  color: #00b27f;
  margin-bottom: 5px;
  font-size: 14px;
}
.ant-modal-body:has(.purchaseorder-view) + .ant-modal-footer {
  display: none;
}
.downloadclr svg {
  stroke: #ffffff;
  margin-right: 10px;
}
.scroll-280 {
  max-height: 250px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(224, 226, 231, 1) #fff;
  margin-left: 25%;
}

.btn-outline{
  color: var(--main-color-80) !important;

}

.btn-save,.btn-save:hover,
.btn-outline,.btn-outline:hover {
  background-color: var(--main-color-80) !important;
  border: 1px solid var(--main-color-80) !important;
  color: #fff !important;
}

.btn-save:focus,
.btn-outline:focus {
  box-shadow: none;
  color: #fff !important ;
  background-color: var(--main-color-80) !important;
}

/*tips*/
.infoicon {
  stroke: #00b27f !important;
}
.pax-url-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #7EA0A3 !important;
  background-color: #F1F4F4 !important;
  padding: 12px 16px;
  border-radius: 4px !important;
  margin-top: 12px;
  width: 85% !important;
}

.pax-url-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pax-url-icon {
  margin-top: 4px;
}

.pax-url-title {
  font-weight: 400;
  font-size: 0.875rem !important;
  margin-bottom: 4px;
  color: #111827;
}

.pax-url-subtitle {
  font-size: 0.875rem !important;
  color: #0c0c0c;
}

.pax-url-subtitle a {
  color: #00b27f !important;
  text-decoration: none;
}

.pax-url-subtitle a:hover {
  text-decoration: underline;
}

.pax-url-button {
  border: 1px solid #00b27f !important;
  background-color: #fff !important;
  color: #485a5c !important;
  padding: 6px 12px;
  border-radius: 4px !important;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
}
.pax-url-button:hover {
  background-color: #00b27f !important;
  color: #fff !important;

}
.mt1-2 {
  margin-top: 0% !important;
}
.custom-dropdown {
  position: relative !important;
  width: 200% !important;
}
.custom-dropdown-crm {
  position: relative !important;
}
.dropdown-header {
  cursor: pointer !important;
  padding: 8px !important;
  background: white !important;
  border: 1px solid #ccc !important;
  border-radius: 0px !important;
  position: relative !important;
  width: 150% !important;
}

.dropdown-header-crm {
  cursor: pointer !important;
  padding: 8px !important;
  background: white !important;
  border: 1px solid #ccc !important;
  border-radius: 0px !important;
  position: relative !important;
  width: 93% !important;
}
.dropdown-arrow {
  position: absolute !important;
  right: 10px !important;
  top: 8px !important;
}

.dropdown-list {
  position: absolute !important;
  width: 150% !important;
  background: white !important;
  border: 1px solid #ccc !important;
  z-index: 1000 !important;
  margin-top: 2px !important;
  border-radius: 0px !important;
  max-height: 200px !important;
  overflow-y: auto !important;
}

.search-boxinv {
  position: relative !important;
  padding: 5px !important;
}

.search-boxinv input {
  padding-left: 25px !important;
  width: 100% !important;
}

.search-iconinv {
  position: absolute;
  top: 18px !important;
  left: 10px !important;
  font-size: 12px !important;
}

.dropdown-options {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.dropdown-options li {
  padding: 8px 12px !important;
  cursor: pointer !important;
}

.dropdown-options li.selected {
  background-color: #f0f0f0 !important;
  font-size: 14px !important;
}

.dropdown-options li:hover {
  background-color: #f0f0f0 !important;
}
/*tips*/

.custom-dropdown-st {
  position: relative !important;
  width: 175% !important;
}
.dropdown-header-st {
  cursor: pointer !important;
  padding: 8px !important;
  background: white !important;
  border: 1px solid #ccc !important;
  border-radius: 0px !important;
  position: relative !important;
  width: 286% !important;
}

/*StoreSettingsdual*/
.dual-pricing .accordion-body {
  padding: 20px;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.toggle-label {
  font-weight: 500;
  font-size: 16px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 22px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #00b27f;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.option-group {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.option-group label {
  flex: 1;
  font-weight: 500;
}

.description {
  font-size: 13px;
  color: #666;
}

.surcharge-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 20px 0;
}

.input-group-settings {
  flex: 1;
}

.input-group-settings label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.input-group-settings input {
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
}

.bottom-toggle {
  margin-top: 30px;
}

.note {
  font-size: 13px;
  color: #777;
  margin-top: -17px;
}
.option-box-group {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.option-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  flex: 1;
  cursor: pointer;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.option-box:hover {
  border-color: #b0b0b0;
}

.option-box input[type="radio"] {
  margin-top: 3px;
}

.option-box .option-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.option-box .description {
  font-size: 13px;
  color: #6c757d;
}

.option-box input[type="radio"]:checked + div {
  font-weight: 600;
}

input[type="radio"]:checked + div .option-title {
  color: #333333;
}

.input-group-settings {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.percentage-field {
  position: relative;
  width: 100%;
}

.percentage-field input {
  width: 100%;
  padding: 8px 24px 8px 8px;
  font-size: 14px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  box-sizing: border-box;
}

.percentage-field span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #333;
  pointer-events: none;
}

.toggle-row.bottom-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.toggle-label {
  font-size: 14px;
  margin-right: 12px;
}
/*StoreSettingsdual*/

.card-section {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}
.section-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

/* 
/////Dayend */

.time-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(
    7,
    minmax(110px, 1fr)
  ); /* Reduced column width */
  gap: 12px;
  width: 100%;
}

.time-day-box {
  padding: 8px; /* Reduced padding */
  font-size: 13px; /* Optional: shrink font slightly */
}

/* Responsive fallback (if needed) */
@media (max-width: 992px) {
  .time-grid-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .time-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .time-grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.active-day-btn{
background-color: #00b27f;
border: none;
padding: 4px 16px;
border-radius: 12px;
color: #fff;
}

.inactive-day-btn{
background-color: #E5E7E8;
border: none;
padding: 4px 16px;
border-radius: 12px;
color: #191B1C;

}

.show-Active-dayend-info{
    border: 1px solid var(--main-color);
    padding: 10px;
    background-color: #F1F6FD;
    flex-shrink: 0;
    width: 100%;
    border-radius: 4px;
    
    margin-left: 1px;
    margin-right: 2px;
    max-width: 100%;
}
.show-caution-dayend-info{
   border: 1px solid var(--caution-color);
    padding: 10px;
    background-color: var(--caution-bg-color);
    flex-shrink: 0;
    width: 100%;
     border-radius: 4px;
    
    margin-left: 1px;
    margin-right: 2px;
    max-width: 100%;
}

.day-end-info-text {
  color: var(--main-color);
  font-size: 12px;
  padding-left: 0.6rem;
}

.day-end-caution-text {
  color: var(--caution-color);
  font-size: 12px;
  padding-left: 0.6rem;
}

.status-tag {
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 500;
}

.status-success {
  color: #039855;
  border: 1px solid #a6f4c5;
  background-color: #ecfdf3;
  border-radius: 12px;
}

.status-failed {
  color: #d92d20;
  border: 1px solid #ffcdc9;
  background-color: #fef3f2;
  border-radius: 12px;
}

.customtimepicker-icon-autodayend svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.customtimepicker-icon-autodayend .customtimepicker-input {
  padding-right: 10px !important;
}

.customtimepicker-icon-autodayend {
  position: relative;
  width: 100%;
  /* padding-left: 30px; */
}

.apply-all-days-active {
  color: var(--main-color);
}

.rmdp-day.rmdp-selected span:not(.highlight){
  background-color: #00b27f !important;
}

/* Prevent background scroll when modal is shown */
body.modal-open {
  overflow: hidden;
}

/* Overlay background */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  z-index: 1040;
}

.custom-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  background: white;
  width: 500px; /* increase width */
  max-width: 90vw;
  padding: 24px; /* more padding for a roomy layout */
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  font-size: 16px; /* increase font size */
}

/* Modal footer buttons */
.custom-modal .modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.custom-modal button {
  font-size: 15px;
  padding: 8px 16px;
}
.custom-modal .modal-title {
  font-size: 24px; /* Make the title bigger */
  font-weight: 600; /* Make it semi-bold or use 700 for bold */
  margin-bottom: 12px;
}
.navbar-content {
  position: relative;
}
.sidebar-version {
  position: absolute;
  bottom: 5px;
  left: 4px;
  color: #000;
}
.layout-version {
  position: absolute;
  bottom: 5px;
  right: 10px;
  color: #000;
}

/* new merchant related */

.show-store-creation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content-css {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* new merchant related */
.reprtst-1 {
  width: 400px !important;
}

/* Below css is used for the inventory Module: */

.item-group-radio {
  padding: 0;
  margin: 0;
  display: flex;
  /* align-items: center; */
  min-height: auto;
  gap: 8px;
  min-width: 100px;
}

.rounded-status-btn-itemgroup {
  border-radius: 30px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  height: 22px;
  min-width: 60px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Active state */
.rounded-status-btn-itemgroup.active {
  background-color: var(--itemgroup-bg-active-status-color);
  color: var(--itemgroup-active-status-color);
}

/* Inactive state */
.rounded-status-btn-itemgroup.inactive {
  background-color: var(--itemgroup-bg-inactive-status-color);
  color: var(--itemgroup-inactive-status-color);
}

.inventory-status {
  padding: 2px 6px;
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.inventory-status.created {
  background: #e6fbe4;
  color: #0fa401;
}
.inventory-status.received {
  background: #e6fbe4;
  color: #0fa401;
}
.inventory-status.pending {
  background: #fff0e5;
  color: #ff6b00;
}
.inventory-status.none {
  background: #f5f5f5;
  color: #6b7280;
}
.inventory-status.damaged {
  background: #ffe6e6;
  color: #d32f2f;
}
.inventory-status.no-invoice {
  background: #f5f5f5;
  color: #6b7280;
}
.inventory-status.verify {
  background: #e3f2fd;
  color: #1976d2;
}
.inventory-status.verified {
  background: #e6fbe4;
  color: #0fa401;
}
.inventory-status.moderate {
  background: #ffe6e6;
  color: #d32f2f;
}
.inventory-status.issues {
  background: #fff0e5;
  color: #ff6b00;
}

.dashboard-width {
  width: 22%;
}

.page-title {
  margin-bottom: 20px;
}

.search-bulk-container {
  display: flex;
  gap: 8px;
  width: 96.6%;
  margin-left: 24px;
  margin-bottom: 15px;
}

.scan-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.adjust-stock-link {
  color: #105cff;
  font-weight: 600;
  cursor: pointer;
}

.adjust-stock-link:hover {
  text-decoration: underline;
}

.adjustmodal-root .ant-modal-content {
  border-radius: 8px;
  background: #fff;
  padding: 30px;
  width: 700px;
}

.adjustmodal-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: 0px;
}

.adjustmodal-section {
  margin-bottom: 20px;
}

.adjustmodal-item-name {
  font-weight: 700;
}

.adjustmodal-meta-box {
  padding: 10px;
  background: #f5f5f5;
  border-radius: 5px;
  margin-top: 6px;
  gap: 50px;
}

.adjustmodal-meta-info {
  margin-top: 4px;
  font-size: 15px;
  color: #dbdbdb;
  display: flex;
  gap: 40px;
  align-items: center;
}

.adjustmodal-section .ant-row {
  align-items: center;
}
.adjustmodal-section > .adjustmodal-meta-box {
  background: #f8f9fa !important;
}

.adjustmodal-select .ant-select-selection-placeholder {
  font-weight: 400 !important;
  color: black !important;
}

.adjustmodal-select .ant-select-selector {
  border-radius: 6px !important;
  background: #fff !important;
  padding: 7px 12px !important;
  border: 1px solid #e0e0e0 !important;
  font-size: 15px;
  color: black !important;
}

.adjustmodal-select .ant-select-arrow {
  color: black !important;
}

#adjustmodal-stock {
  margin-left: 200px;
}

.adjustmodal-input {
  width: 56px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-size: 15px;
  padding-left: 7px;
  height: 32px;
}

.adjustmodal-success {
  color: #26c281 !important;
  font-weight: 600;
  font-size: 16px;
  padding-left: 8px;
}

/* 🔹 Final Stock Preview */
.adjustmodal-preview-box {
  background: #e7faee;
  border-radius: 5px;
  padding: 12px 16px;
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.adjustmodal-preview-box strong {
  font-weight: 700;
  color: #000;
}

.adjustmodal-root .ant-modal-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  background: transparent;
  padding: 24px;
  border: none;
}

.adjustmodal-cancel-btn {
  background: #eaeaea !important;
  color: #222 !important;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  min-width: 120px;
  height: 40px;
  transition: background 0.2s ease;
}
.adjustmodal-cancel-btn:hover {
  background: #d5d5d5 !important;
}

.adjustmodal-update-btn {
  background: #0052cc !important;
  color: #fff !important;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  min-width: 160px;
  height: 40px;
  transition: background 0.2s ease;
}
.adjustmodal-update-btn:hover {
  background: #0041a8 !important;
}

.adjustmodal-section > .ant-typography {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-bottom: 4px;
}

.adjustmodal-select .ant-select-selector:focus,
.adjustmodal-select .ant-select-selector:active,
.adjustmodal-input:focus {
  box-shadow: none;
  border-color: #0052cc;
}

.adjustmodal-root .ant-modal-close {
  top: 18px;
  right: 18px;
}

.adjustmodal-root .ant-modal {
  width: 465px !important;
}

.adjustmodal-convert-box {
  display: flex;
  align-items: center;
  gap: 16px; /* space between input and box */
  margin-top: 6px;
}

/* 🔹 Wider input */
.adjustmodal-input-wide {
  /* flex: 1;                   */
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-size: 15px;
  height: 36px;
  padding-left: 4px;
  width: 280px;
}

/* 🔹 Create box */
.adjustmodal-created-box {
  background: #f8f9fa; /* light gray */
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 15px;
  color: #333; /* dark gray for "Create:" */
  font-weight: 500;
  display: flex;
  flex-direction: column; /* stack lines vertically */
  width: 350px; /* keep consistent width */
}

.adjustmodal-created-box span {
  color: #26c281; /* green text */
  font-weight: 600;
  margin-top: 2px;
}

#adjustmodal-individual {
  margin-left: 125px;
}
#adjustmodal-total {
  margin-left: 125px;
}

/* 🔹 Footer buttons full width */
.adjustmodal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.adjustmodal-actions .ant-btn {
  flex: 1;
  height: 44px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 15px;
}

.adjustmodal-update-btn {
  background: #1255ff !important;
}
/* 🔹 Container for search + button */
.search-bulk-container {
  display: flex;
  align-items: center; /* keeps input + button aligned */
  gap: 16px;
  margin-bottom: 16px;
}

/* 🔹 Bulk Adjust button */
.bulk-adjust-btn {
  background: #e0e7ff; /* light blue background */
  color: #105cff; /* blue text */
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;

  display: flex; /* ensures text stays in one line */
  align-items: center; /* vertically center text */
  white-space: nowrap; /* prevents text wrapping */
  line-height: 1;
  padding: 12px; /* keeps text neatly aligned */
}

.bulk-adjust-btn:hover {
  background: #c7d2fe; /* darker blue on hover */
}
  /*Safe Point*/
  .integration-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .integration-list {
    flex: 1;
    min-width: 280px; 
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
  }
  .integration-wrap .integration-list .safepoint-logo{
    min-width: 126px;
    min-height: 126px;
    border-radius: var(--border-radius);
    background: #F5F6F7;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-self: center;
    margin: 0;
  }
  .integration-wrap .integration-list .safepoint-logo img{
    width: 60% !important; 
    margin-left: 18% !important;
  }
  .customlist-1{
    width: 100%;
  }
  .threshold-options {
    display: flex;
    gap: 20px;
  }

  .threshold-option {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.2s ease;
  }

  .threshold-option.active {
    border: 2px solid #00b27f;     
    background-color: #f4f6fb;      
    box-shadow: 0 0 6px rgba(231, 76, 60, 0.3);
  }

  .threshold-option input[type="radio"] {
    margin-right: 8px;
  }

  .threshold-option strong {
    font-size: 14px;
  }

  .threshold-option p {
    margin: 0;
    font-size: 12px;
    color: #666;
  }
  /*Safe Point*/

/* Search bar wrapper aligned with table */
#inventory-search-bar {
  display: flex;
  flex-direction: column; 
  width: 30%; 
  margin-bottom: 1rem;
  margin-left: 23px;
  margin-top: -20px;
}

/* Input inside search bar should match table width */
#inventory-search-bar input {
  width: 100%; 
  max-width: 100%; 
  box-sizing: border-box; 
}

.delivery-days-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.delivery-day-btn {
  border: 1px solid #ccc;
  background-color: #fff; 
  color: #000;
  padding: 6px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-width: 71px;
  text-align: center;
}


.delivery-day-btn:not(.active):hover {
  border-color: var(--main-color);
  background-color: #f8f9fa; 
  color: #000;
}


.delivery-day-btn.active {
  border-color: var(--main-color);
  background-color: var(--main-color);
  color: #fff;
  font-weight: 600;
}
.custom-link:hover{
  background-color: var(--main-color);
  border-color: var(--main-color);
 
}
 
.btn-outline-primary {
    --bs-btn-color: var(--main-color);
    --bs-btn-border-color: var(--main-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--main-color);
    --bs-btn-hover-border-color: var(--main-color);
    --bs-btn-focus-shadow-rgb: 52, 84, 209;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--main-color);
    --bs-btn-active-border-color: var(--main-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--main-color);
    --bs-btn-disabled-bg: transparent;
    --bs-gradient: none
}


.delivery-day-btn:not(.active) {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ccc !important;
}

.uploaded-invoice-img {
  width: 500px !important;
  height: 200px !important;
  objectFit: contain;
  borderRadius: 10px;
  border: 2px dotted #eee;
  marginBottom: 12px;
  padding: 10px;
}

.invoice-thumb-wrapper {
  width: 50px !important;
  height: 50px !important;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #eee;
  box-shadow: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.2s, box-shadow 0.2s;
}

.invoice-thumb-wrapper.selected {
  border: 2px solid #007bff;
  box-shadow: 0 0 0 2px #007bff33;
}

.invoice-preview {
  width: 500px;
  height: 200px;
  border-radius: 10px;
  border: 2px dotted #eee;
  margin-bottom: 12px;
  object-fit: contain;
  display: block; 
  background: #fafafa; 
}

.invoice-preview iframe,
.invoice-preview img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
  border: none;
  display: block;
}

.myTag {
  background-color: #f0f0f0;
  color: #333;
}

.myTag.active {
  background-color: var(--main-color);
  color: white;
}


