/* common css */
/* Scrollbar for WebKit-based browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background: #7cd37f; /* Color of the scrollbar thumb */
  border-radius: 6px; /* Rounded corners for the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: #c0e6b5; /* Color of the scrollbar thumb on hover */
}

/* Scrollbar for Firefox */
* {
  scrollbar-width: thin; /* Make scrollbar thin */
  scrollbar-color: #7cd37f #f1f1f1; /* Thumb color and track color */
}


.primary-color {
  background-color: #007a5a !important;
}

.secondary-color {
  background-color: #7cd37f !important;
}

.third-color {
  background-color: #b3dfff !important;
}
* {
  box-sizing: border-box;
}

#warehouse_list{
  width: 115px;
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif !important;
}

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

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

.theme-bg-color {
  background-color: #007a5a !important;
}

.theme-color {
  color: #007a5a;
}

.btn-custom {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.btn.btn-custom:hover {
  color: #ffffff;
}

.content-p {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  margin: 0;
}

.white {
  color: #fff;
}

.theme-col-color {
  background-color: #b3dfff;
  border: 1px solid #e6e6e6;
}

/* login css */
.login-box {
  width: 100%;
  max-width: 442px;
  /* min-height: 480px; */
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 36px;
  /* display: flex;
    flex-direction: column;
    justify-content: space-around; */
}

#login {
  height: 100vh;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}

label.label {
  margin: 0;
  padding-bottom: 6px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  color: #404040;
}

.login-text {
  font-weight: 600;
  font-size: 18px;
  line-height: 44px;
  color: #212121;
}

.login-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
}

.login-logo img {
  padding-bottom: 10px;
}

input.form-control {
  border: 1px solid #8c8c8c;
  border-radius: 6px;
}

input.form-control::placeholder {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #a6a6a6;
}

input.form-control:focus {
  box-shadow: none;
  border-color: #007a5a;
}

.password-field {
  position: relative;
}

span.toggle-password {
  position: absolute;
  top: 10px;
  right: 15px;
}

input.form-control.password-field-input {
  padding-right: 40px;
}

/* dashboard-header */
.kpn-dashboard {
  height: 100vh;
  /* overflow: hidden; */
  overflow: auto;
}

.first-set {
  display: flex;
  align-items: center;
}

.second-set {
  display: flex;
  align-items: center;
}

.header-dashboard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

/* navbar */
.navbar {
  width: 67px;
  padding-left: 0;
  display: flex;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.container.nav-container {
  padding-left: 0;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 13px;
  left: 0;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 20px;
  width: 26px;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

/* .navbar .menu-items {
  padding-top: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  height: 100vh;
  width: auto;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -50px;
  padding-left: 40px;
  padding-right: 50px;
  transition: transform 0.5s ease-in-out;
  text-align: left;
  margin-top: 69px;
  z-index: 1;
} */

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-items.drawer-fonts li.menu-font a {
  color: #262626;
  font-size: 12px;
  font-weight: 500;
}

.logo {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 1.2rem;
  color: #0e2431;
}

.nav-container input[type="checkbox"]:checked~.menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked~.logo {
  display: none;
}

.admin-dashboard {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.admin-head-content {
  font-weight: 600;
  margin: 0;
  padding-left: 15px;
}

.dashboard-logo {
  display: flex;
  align-items: center;
}

img.drop-img {
  width: 46px;
  height: 46px;
  cursor: pointer;
  margin-left: 18px;
}

.dropdown-menu.drop-style.show {
  z-index: 1;
  top: 3px !important;
  left: -111px !important;
  transform: translate3d(-12px, 46px, 0px) !important;
}

.dropdown-menu.show:before {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #7cd37f;
  display: block;
  content: "";
  top: 0;
  right: 24px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.red {
  color: red !important;
}

/* dashboard content */
.dashboard-sets {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

.left-sidebar {
  width: 22%;
}

.tables-set {
  width: 54%;
  height: 600px;
  overflow: auto;
}

.right-sidebar {
  width: 22%;
}

/* left-sidebar */
.calander-box {
  display: flex;
  margin-bottom: 10px;
  align-items: flex-end;
}

.sales-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 20px;
  background: #ffffff;
  border: 1px solid #007a5a;
  border-radius: 4px;
}

.sales-box-total {
  background: #007a5a;
  border: 1px solid #007a5a;
  border-radius: 4px;
}

.search-box {
  color: #fff !important;
  border: 0;
}

.sales-box:last-child {
  margin: 0;
}

.total-sales {
  padding: 20px 10px;
  background: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.top-sales {
  padding: 10px 5px;
  background: #f6f6f6;
  border-radius: 6px;
  overflow-y: auto;
  max-height: 250px;
}

button.btn.theme-bg-color.search-box:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.donut-chart {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #f2f2f2;
  overflow: hidden;
}

.donut-chart__slice {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  transform-origin: left;
}

.donut-chart__slice--red {
  background-color: #ff4d4d;
  transform: rotate(0deg);
}

.donut-chart__slice--blue {
  background-color: #0099ff;
  transform: rotate(90deg);
}

.donut-chart__slice--green {
  background-color: #00cc66;
  transform: rotate(180deg);
}

.donut-chart__slice--yellow {
  background-color: #ffcc00;
  transform: rotate(270deg);
}

.dashboard-chart {
  background: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 15px;
}

.dashboard-chart p {
  margin: 0;
  padding: 8px 20px;
  background-color: #f2f2f2;
}

/* table section */
.table.dashboard-tab tbody td:nth-child(4),
.table.dashboard-tab tbody td:nth-child(5),
.table.dashboard-tab tbody td:nth-child(6),
.table.dashboard-tab tbody td:nth-child(7) {
  text-align: end;
}

.table.dashboard-tab tbody td:nth-child(2),
.table.dashboard-tab tbody td:nth-child(1) {
  text-align: center;
}

.table.dashboard-tab thead th {
  font-size: 14px;
  padding: 2px !important;
  text-align: center;
}

.table.dashboard-tab tbody td {
  font-size: 12px;
  padding: 2px !important;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #d8d6d6;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #666;
}

.table.dashboard-tab tbody tr.theme-col-color td {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

table {
  border: 1px solid #dddddd;
}

tr.total-row td {
  font-size: 12px;
  padding: 4px;
  font-weight: 600;
}

tr.total-row th:nth-child(4),
tr.total-row th:nth-child(5),
tr.total-row th:nth-child(6),
tr.total-row th:nth-child(7) {
  text-align: end;

}

.final-total {
  padding: 5px;
  background: #f25959;
  border-radius: 6px;
  text-align: center;
  color: #fff;
}

tr.total-row.grand-total td {
  font-weight: 700;
  vertical-align: middle;
}

/* right bar */
.dashboard-chart.padding-tb {
  padding-bottom: 10px;
}

.padding-tb .content-p {
  margin-bottom: 22px;
}

/* dashboard-panel */
.dashboard-panel {
  padding-top: 50px;
  text-align: center;
}

.panel-link p {
  margin: 0;
  font-weight: 600;
  line-height: 20px;
}

.panels {
  display: flex;
  flex-direction: column;
  max-width: 180px;
  margin: 0 auto;
  width: 100%;
  min-height: 180px;
  justify-content: space-between;
  background: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 2px;
}

.panel-link {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 7px 0px;
  background: #b3ffdf;
  border: 3px solid #ffffff;
  border-radius: 0px 0px 8px 8px;
}

.arrow-box {
  background: #ffffff;
  border: 1px solid #f2f2f2;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 5px 12px;
}

.panel-img {
  padding-top: 30px;
}

.arrow-box:hover i.fa.fa-arrow-right.changes {
  color: #007a5a;
}

i.fa.fa-arrow-right.changes {
  color: #000;
}

.panel-img img {
  width: 64px;
}

#chartdiv {
  width: 100%;
  height: 222px;
}

#chartdivSale {
  width: 100%;
  height: 222px;
}

#chartdivBar {
  width: 100%;
  height: 222px;
}

.table-location-yellow {
  background-color: #ffd842;
}

.table-location-red {
  background-color: #f25959;
  color: white;
}

.mr-10 {
  margin-right: 10px
}

/* GB DASHBOARD */
/* .dashboard-content {
  padding-top: 65px;
} */
.dashboard-content.gb-content {
  padding-top: 61px;
}

.admin-dashboard.gb {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  z-index: 1;
  right: 0;
  background: #fff;
}

.gb-dashboard {
  padding-top: 20px;
}

.calander-box p {
  margin: 0;
}

.calander-box .btn:hover {
  color: #ffffff;
}

input.from-to-input {
  margin-right: 10px;
  width: 160px;
  border: 1px solid #e1e2e9;
  border-radius: 6px;
  color: #bfbfbf;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

p.summary {
  font-weight: 500;
  line-height: 14px;
}

.summary-image img {
  width: 64px;
}

.summary-content p {
  margin: 0;
  font-weight: 700;
}

.summary-box {
  display: flex;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  width: 290px;
  height: 110px;
  max-width: 100%;
  align-items: center;
  justify-content: space-around;
}

.summary-image {
  width: 100%;
  max-width: 100px;
  text-align: center;
  position: relative;
}

.summary-content {
  width: 100%;
  padding-left: 20px;
}

.summary-image:after {
  content: "";
  position: absolute;
  background: #eeeeee;
  width: 2px;
  height: 50px;
  display: inline-block;
  right: 0;
  top: 6px;
}

.summary-content p.content-box {
  padding-bottom: 10px;
}

.green {
  color: green;
}

span.sub-content {
  font-size: 11px;
  font-weight: 300;
}

span.sub-content i.fa {
  margin-left: 5px;
}

p.indication {
  font-weight: 500;
}

/* graph section */
.lowest-top {
  width: 690px;
  height: 358px;
  background: #ffffff;
  border-radius: 12px;
  padding-top: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.lowest-summary {
  padding: 15px 0 50px 0px;
}

#chartdivgb1 {
  width: 100%;
  height: 300px;
}

#chartdivgb2 {
  width: 100%;
  height: 300px;
}

.lowest-fruits-heading {
  padding: 5px 0px 0px 25px;
  font-weight: 500;
}

/* gb-dashboard table */
table.second-table {
  margin: auto;
  border: 0 !important;
  border-collapse: separate;
  border-spacing: 0;
}

.table thead.gb-head th {
  border-bottom: 0 !important;
}

thead.gb-head td {
  padding: 10px 30px;
}

.retail-table {
  padding-bottom: 50px;
}

.table-rounded tr:first-child,
.table-rounded tr.tab-head-radius th:first-child {
  border-top-left-radius: 10px;
}

.table-rounded tr:last-child {
  border-bottom-left-radius: 10px;
}

.table-rounded tr:first-child,
.table-rounded tr.tab-head-radius th:last-child {
  border-top-right-radius: 10px;
}

.table-rounded tr:last-child {
  border-bottom-right-radius: 10px;
}

tr.first-last-d td:first-child {
  border-bottom-left-radius: 10px;
}

tr.first-last-d td:last-child {
  border-bottom-right-radius: 10px;
}

.table-E5F4FF {
  background-color: #e5f4ff;
}

.thead-bg {
  background-color: #f4f4f4;
}

.table thead.gb-head th:nth-child(2),
.table thead.gb-head th:nth-child(3),
.table thead.gb-head th:nth-child(4),
.table thead.gb-head th:nth-child(5),
.table thead.gb-head th:nth-child(6) {
  border-left: 0;
  border-right: 0;
}

.table thead.gb-head th:nth-child(1) {
  border-right: 0;
}

.table thead.gb-head th:nth-child(7) {
  border-left: 0;
}

.table-bordered.teble-2 td {
  border-right: 0 !important;
  border: #fff;
}

table.teble-2 tr td:first-child {
  border-left: 1px solid #e9ecef !important;
}

table.teble-2 tr td:last-child {
  border-right: 1px solid #e9ecef !important;
}

tr.first-last-d td {
  border-bottom: 1px solid #e9ecef !important;
}

.retail-head-title {
  margin-right: 10px;
}

/* switch */
.switch-sec .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

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

.switch-sec .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch-sec .slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input.check-switch:checked+.slider {
  background-color: #00b368;
}

input.check-switch:focus+.slider {
  box-shadow: 0 0 1px #00b368;
}

input.check-switch:checked+.slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

.switch-sec {
  line-height: 20px;
}

/* tr.tab-head-radius {
  display: flex;
  justify-content: space-between;
} */
/* Rounded sliders */
.switch-sec .slider.round {
  border-radius: 34px;
}

.switch-sec .slider.round:before {
  border-radius: 50%;
}

th.retail-chart {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.switch-sec .switch {
  margin: 0;
}

img.table-img {
  width: 20px;
}

/*setting page */
.right-end {
  text-align: right;
}

.calander-box.right-end {
  display: flex;
  justify-content: flex-end;
}

.setting-dashboard {
  padding-top: 30px;
  padding-left: 110px;
}

select.setting-btn:focus {
  border-color: #007a5a;
  outline: 0;
  box-shadow: none;
}

.select_box {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background: #f8f9fa;
  padding: 20px 30px;
  max-height: 430px;
  overflow: auto;
}

select.custom-select.setting-btn {
  width: 100%;
  max-width: 250px;
}

.row.selected_box {
  margin-top: 30px;
}

input.input-big-box {
  width: 16px;
  height: 16px;
}

label.form-check-label.input-big-label {
  padding-left: 5px;
  padding-bottom: 15px;
  font-size: 17px;
  font-weight: 500;
}

.select_box_group {
  padding-right: 40px;
}

.option-box {
  display: flex;
  align-items: center;
}

.input-group.small-box {
  display: block;
  max-width: 280px;
}

.mt-80px {
  margin-top: 80px;
}

.i-main>label:hover,
.i-sub>label:hover {
  cursor: pointer;
  text-decoration: underline;
}

.selectall-box {
  padding: 5px 50px;
}

/* data table */
.table.table-1 thead th {
  border: 0;
}

th.retail-chart {
  line-height: 38px;
}

/* div#data_tab_length {
  display: none;
}
div#data_tab_filter {
  display: none;
} */

/* div#example_info {
  display: inline-block;
  padding: 0;
} */
/* div#example_paginate {
  max-width: 300px;
  margin: 0 0px 0 auto;
  display: inline-block;
  float: right;
} */
div#example_paginate a {
  padding: 5px;
  cursor: pointer;
}

div#example_paginate a:hover {
  text-decoration: none;
}

span.square-box {
  padding: 0px;
  background: #ffffff;
  box-shadow: none;
  border-radius: 2px;
  font-weight: 600;
  margin-right: 7px;
}

span.square-box-hover:hover {
  background-color: #007a5a;
  color: #fff;
}

table.dataTable>tbody>tr>td {
  line-height: 10px;
}

table.dataTable>thead>tr>th:first-child {
  text-align: center !important;
}

table.dataTable>thead>tr>th {
  text-align: center !important;
}

/* First child in each row */
table.dataTable > tbody > tr > td:first-child {
  text-align: left;
}

/* Second child in each row */
table.dataTable > tbody > tr > td:nth-child(2) {
  text-align: left;
}


table.dataTable>tbody>tr>td {
  text-align: center;
}

.up-green {
  color: #30d988;
  font-weight: 500;
}

.down-red {
  color: #e24040;
  font-weight: 500;
}

span.hover-pointer {
  cursor: pointer;
}

/* modal box */
h5.modal-heading {
  font-weight: 600;
  font-size: 24px;
}

.kpn-modal-body {
  padding: 0;
}

.kpn-modal-header {
  padding-left: 20px;
}

.modal-table>table>thead>tr>th {
  padding-left: 20px;
}

.modal-table>table>tbody>tr>td {
  padding-left: 20px;
}

.modal-table>table>tbody>tr>td {
  line-height: 42px;
}

.modal-table>table>thead>tr>th {
  line-height: 42px;
}

.center {
  text-align: center;
}

.bg-F4F4F4 {
  background-color: #f4f4f4;
}

/* box border */
.border-green {
  border-left: 7px solid #32936f;
}

.border-yellow {
  border-left: 7px solid #ffc327;
}

.border-blue {
  border-left: 7px solid #4db4ff;
}

.border-red {
  border-left: 7px solid #f25959;
}

/* chart */
#chartdivCompare {
  width: 100%;
  height: 390px;
}

.compare-chart {
  padding: 20px 0px;
  background: #FFFFFF;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin-top: 20px;
}

.block-box {
  background: #F5F7FB;
  border-radius: 6px;
  max-width: 200px;
  height: 300px;
  width: 100%;
}

.item-box {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
}

.item-box:last-child {
  border-bottom: none;
}

.item-box h6 {
  font-size: 24px;
  font-weight: 600;
}

.item-box p {
  margin: 0;
  font-weight: 600;
  color: #A6A6A6;
}

.message-box {
  display: flex;
}

.msgebox-img img {
  width: 32px;
  margin-right: 12px;
}

.msgbox-content h6 {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}

.msgbox-content p {
  font-size: 12px;
  line-height: 18px;
  width: 100%;
  max-width: 200px
}

.mt-15 {
  margin-top: 15px;
}

/* data table options customization */
div#example_length {
  display: none;
}

div#example_filter {
  display: none;
}

table#example {
  margin-bottom: 13px !important;
  border: none;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.table thead tr.gb-head th {
  border: none;
}

div#compare-section-chart {
  display: none;
}

.dataTable tbody {
  white-space: nowrap;
}

.dataTable>tbody>tr>td:last-child {
  text-align: right;
}


/* popover in gb dashboar */
p.poppoverRate {
  width: 100%;
  max-width: 50px;
  margin: 0 0px 0 auto;
  border-radius: 50%;
  padding: 16px 4px;
  margin-right: 20px;
  margin-top: 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-red-circle {
  background: #fdf1f1;
}

.bg-green-circle {
  background: #ebf5f1;
}

.summary-box {
  display: flex;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  width: 290px;
  height: 130px;
  max-width: 100%;
  align-items: center;
  justify-content: space-around;
}

.pop-left {
  display: inline-block;
}

.pop-right {
  display: inline-block;
  float: right;
  margin-top: -30px;
}

/* brand performance dashboard */
.outlets {
  padding-left: 17px;
  margin-left: 15px;
  position: relative;
}

.outlets:before {
  content: "";
  width: 2px;
  height: 40px;
  background: #DADADA;
  display: block;
  position: absolute;
  left: 0;
  top: 29px;
}

.hero-section-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.head-left {
  display: flex;
  align-items: flex-end;
}

.head-left p {
  margin: 0;
}

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

.outlets-select {
  padding-left: 20px;
}

.head-right label {
  margin: 0;
}

table.fill-rate>tbody>tr>td:last-child {
  text-align: right;
}

table.fill-rate>thead>tr>th:last-child {
  text-align: center;
}

.modal-content table.fill-rate {
  padding: 20px;
}

table.fill-rate>thead>tr>th {
  vertical-align: middle;
}

.fullBorChart {
  height: auto;
  background: #ffffff;
  border-radius: 12px;
  padding-top: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

select.custom-select.brand {
  max-width: 250px;
}

.input-group.brand-group {
  display: flex;
  justify-content: flex-end;
}

#chartdivBrandPerformance {
  width: 100%;
  height: 300px;
}

@media (min-width: 992px) {
  .modal-lg.fillrate-modal-lg {
    max-width: 1000px;
  }
}

/* fill rate dashboard */
#chartdivPercentage {
  width: 100%;
  height: 300px;
}

#chartdivZero {
  width: 100%;
  height: 300px;
}

thead.fill-rate tr th {
  vertical-align: middle;
}

@media (min-width: 992px) {
  .modal-lg.fillrate-modal-lg {
    max-width: 1000px;
  }
}

.fa-info-circle {
  cursor: pointer;
}

table#bp-table tbody>tr:hover {
  cursor: pointer;
  background-color: #eff4f8;
}

table th {
  white-space: nowrap;
}


/* for removing up and down arrows in number field */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


.cities {
  padding-left: 10px;
  margin-left: 15px;
  position: relative;
  margin-right: 15px;
}

.cities:before {
  content: "";
  width: 2px;
  height: 40px;
  background: #DADADA;
  display: block;
  position: absolute;
  left: 0;
  top: 29px;
}

.mt-20px {
  margin-top: 20px !important;
}

#chartdivBrandPerformanceTopN,
#chartdivBrandPerformanceLowN {
  width: 100%;
  height: 400px;
}

/* table scroll */
.table-overflow-class {
  height: 400px;
  overflow: auto;
}

.align-itemCenter {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}

tr#fillrate-parent-row {
  cursor: pointer;
}

tr#fillrate-childs {
  cursor: pointer;
}

table.dataTable>thead>tr>th {
  text-align: right !important;
}

table.fill-rate>tbody>tr>td {
  text-align: right;
}

tr#fillrate-childs td:first-child {
  text-align: left;
}

div#brandwisefillrate table tr th {
  text-align: right;
}

div#brandwisefillrate table tr th:first-child {
  text-align: left;
}

tr#fillrate-subChild-row td:first-child {
  text-align: left;
}

tr#fillrate-subChild-row td:nth-child(2) {
  text-align: left;
}

div#itemwisefillrate table tr th {
  text-align: right;
}

div#itemwisefillrate table tr th:first-child {
  text-align: left;
}

div#itemwisefillrate table tr th:nth-child(2) {
  text-align: left;
}


.dataTables_length {
  display: none;
}

div#bp-table_paginate,
div#bp-modal-table_paginate {
  cursor: pointer;
}

div#bp-table_paginate>*,
div#bp-modal-table_paginate>* {
  padding: 0 0.5rem;
}

div#bp-table_paginate>span>*,
div#bp-modal-table_paginate>span>* {
  padding: 0 0.25rem;
}

@media (min-width: 992px) {
  .modal-lg.fillrate-modal-lg.bp-modal-table {
    max-width: 1300px;
  }
}

.error-message {
  color: red;
}

tr#fillrate-childs td {
  padding: 5px;
}

thead.fill-rate>tr>th {
  padding: 0 10px;
}

tr#fillrate-subChild-row td {
  padding: 0 10px;
}

table#brndcmpytable>thead>tr>th {
  padding: 0 30px;
}

.radiobutton {
  margin-right: 62px;
  margin-left: 20px;
}

.download-btn {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 310px;
}

table#wastage-table>tbody>tr>td {
  padding: 11px 10px;
  vertical-align: middle;
}

tbody#table-modal-data0>tr:hover {
  cursor: pointer;
  background-color: #197ef3;
}



/* modal scroll works */
div#bp-modal-table3_wrapper {
  max-width: 1200px;
  overflow: auto;
  margin: 0 auto;
}

table#bp-modal-table3>thead>tr>th {
  text-align: left !important;
}

table#bp-modal-table3>tbody>tr>td {
  text-align: left !important;
}

div#bp-modal-table3_filter {
  right: 50px;
  position: absolute;
}

table#bp-modal-table3 {
  margin-top: 20px !important;
}

.modal-header.kpn-modal-header {
  margin-bottom: 15px;
}


/* table not scrollable works */
table#cashcollection thead tr.cash th {
  font-weight: 500;
  font-size: 12px;
}

table#cashcollection tbody tr td {
  font-size: 12px;
}

/* table top padding */
table#cashcollection {
  padding-top: 30px;
}

.hero-section-contents.cashes {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}


/* button outlined */
button.cashes-btn:hover {
  background: #006f52;
}

button.cashes-btn {
  border: 1px solid #006f52;
}

tr.font-bold.f-500 {
  background: #ffff483b;
  font-weight: 600;
}

.cursor-pointer {
  cursor: pointer !important;
}

.hover-effect:hover {
  background-color: #f3f3f3;
}

.right {
  right: 0;
}

tr.single-line-td>td:nth-child(2) {
  text-align: left !important;
  width: 100%;
  min-width: 200px;
}

.buttons-excel {
  display: none !important;
}

.counter-center {
  padding: 6px;
}

#cash-table>thead>tr>th {
  text-align: center !important;
}

#cash-table thead {
  font-weight: 400 !important;
  font-size: .7rem;
}

#cash-table {
  font-size: .8rem;
}

#cash-table th,
#cash-table td {
  padding: .5rem;
}

#cash-table_filter {
  font-size: .8rem;
}

#cash-table_filter {
  position: sticky;
  left: 0;
}

#cash-table_info {
  position: sticky;
  left: 0;
}

#cash-table_paginate {
  position: absolute;
  right: 0;
}

.dataTables_info,
.dataTables_paginate {
  display: inline-block;
  padding: .25rem;
}

.dataTables_paginate {
  float: right;
}

div#cash-table_wrapper {
  max-width: 98vmax !important;
  overflow: auto !important;
  z-index: 1;
}

div#brndcmpytable_wrapper {
  max-width: 98vmax !important;
  overflow: auto !important;
  z-index: 1;
}

div#total-cash-popup,
div#deposited-cash-popup {
  z-index: 1050;
}

#total-cash {
  padding: 5px;
  background: #ffc0cb59;
  box-shadow: 0 1px 5px #00000057;
  border-radius: 5px;
}

#deposited-cash {
  padding: 5px;
  background: #c8ffc059;
  box-shadow: 0 1px 5px #00000057;
  border-radius: 5px;
}


.cash-card {
  border: none;
}

div#cash-table_wrapper {
  margin-top: .75rem;
}

div#total-cash-popup {
  max-height: 400px !important;
  overflow: auto !important;
}

div#deposited-cash-popup {
  max-height: 400px !important;
  overflow: auto !important;
}

.total-color {
  background-color: #fffc073d !important;
}

.city-column-color {
  background-color: #d3ede6 !important;
}

.franchise-column-color {
  background-color: #d7e7f1 !important;
}

.sub-total-color {
  background-color: #f0f0f0 !important;
  font-weight: 500 !important;
}

tr#wastage-parent-row {
  cursor: pointer;
}

.product {
  padding-left: 5px;
  margin-left: 10px;
  position: relative;
  margin-right: 15px;


}

.spinner-border-sm {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25rem;
}

#brndcmpytable_paginate {
  justify-content: center;
  margin-top: 10px;
}

#brndcmpytable_paginate .paginate_button,
#cash-table_paginate .paginate_button {
  color: #333;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  margin: 0 2px;
  text-decoration: none;
  cursor: pointer;
}

#brndcmpytable_paginate .paginate_button.current,
#cash-table_paginate .paginate_button.current {
  background-color: #eee;
}

#brndcmpytable_paginate .paginate_button.disabled,
#cash-table_paginate .paginate_button.disabled {
  color: #888;
  cursor: not-allowed;
  pointer-events: none;
}



#brandtable_paginate {
  justify-content: center;
  margin-top: 10px;
}

#brandtable_paginate .paginate_button {
  color: #333;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  margin: 0 2px;
}

#brandtable_paginate .paginate_button.current {
  background-color: #eee;
}

#brandtable_paginate .paginate_button.disabled {
  color: #888;
  cursor: not-allowed;
  pointer-events: none;
}

#itemtable_paginate {
  justify-content: center;
  margin-top: 10px;
}

#itemtable_paginate .paginate_button {
  color: #333;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  margin: 0 2px;
}

#itemtable_paginate .paginate_button.current {
  background-color: #eee;
}

#itemtable_paginate .paginate_button.disabled {
  color: #888;
  cursor: not-allowed;
  pointer-events: none;
}


div#modal-level-1-table {
  max-height: 500px !important;
  overflow: auto;
}

div#modal-level-2-table {
  max-height: 500px !important;
  overflow: auto;
}


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

.paginate_button {
  margin-right: .25rem;
}

.location-container {
  max-height: 350px;
  overflow: auto;
}

.city {
  background-color: #cdd0d4;
}

.product-table {
  max-height: 450px;
}

.down-arrow {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
}

#offer_table {
  border-collapse: collapse;
  border: none;
  width: 100%
}

.border_none {
  border-collapse: collapse;
  border: none;

}

.required {
  color: red;
}

.bold {
  font-weight: bold;
}

#counter-table_paginate {
  justify-content: center;
  margin-top: 10px;
}

#counter-table_paginate .paginate_button {
  color: #333;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  margin: 0 2px;
}

#counter-table_paginate .paginate_button.current {
  background-color: #eee;
}

#counter-table_paginate .paginate_button.disabled {
  color: #888;
  cursor: not-allowed;
  pointer-events: none;
}

.file-i {
  min-width: 500px;
  width: fit-content;
}

.no-button,
.no-button:hover,
.no-button:active,
.no-button:focus {
  border: none !important;
  outline: none !important;
  background-color: transparent !important;
}

#product-table thead {
  position: sticky;
  top: -2px;
  background-color: #008cff26;
}

#product-table thead th,
#product-table tbody tr td {
  padding: 5px 10px;
}

.td-error {
  background-color: rgb(222, 80, 80);
}

#product-table tbody tr td:last-child {
  max-height: 20px;
  overflow: auto;
}

#product-table {
  font-size: .8rem;
  white-space: nowrap;
}

.grounded {
  border-radius: 3rem !important;
  padding: auto 1.5rem;
  font-size: .8rem;
}

.masters-table {
  font-size: .8rem;
  white-space: nowrap;
}

.masters-table thead {
  position: sticky;
  top: 0;
  background-color: #008cff26;
  z-index: 100;
}

.masters-excel-button {
  position: absolute;
  right: 1rem;
  outline: none;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.masters-excel-button img {
  width: 32px;
  height: 32px;
}

table.dataTable.masters-table>tbody>tr>td {
  text-align: left;
}

table.dataTable.masters-table>thead>tr>th {
  text-align: left !important;
}

.small-checkbox {
  margin-left: 50px;

}

.small-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 7px;
  /* margin-left: 50px; */
}

.card-customize {
  background-color: #fff;
  border: none;
  position: relative;
  margin-bottom: 30px;
  border-radius: 7px;
  box-shadow: 0 2px 17px 2px rgb(194, 186, 210, 0.2);
  background-clip: border-box;

}

.card-header-customize {
  padding: 10px 20px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #e9f1f1;
}

.tag-info {
  background-color: #01b8ff;
}

.tag-danger {
  background-color: #ff473d;
}

.tag {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-top: 32px;
  margin-left: -48px;
}

.toggle input {
  display: none;
}

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

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

input:checked+.slider {
  background-color: #268b3c;
}

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

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 17px;
}

.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cd6a6a;
  border-radius: 30px;
  transition: .4s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 1px;
  bottom: 1px;
  background-color: #fff;
  border-radius: 50%;
  transition: .4s;
}

input[type="checkbox"]:checked+.toggle-slider {
  background-color: #3cb371;
}

input[type="checkbox"]:checked+.toggle-slider:before {
  transform: translateX(30px);
}

.toggle-slider.round {
  border-radius: 30px;
}

.toggle-slider.round:before {
  border-radius: 50%;
}

#authtable_paginate {
  justify-content: center;
  margin-top: 10px;
}

#authtable_paginate .paginate_button,
#cash-table_paginate .paginate_button {
  color: #333;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  margin: 0 2px;
  text-decoration: none;
  cursor: pointer;
}

#authtable_paginate .paginate_button.current,
#cash-table_paginate .paginate_button.current {
  background-color: #eee;
}

#authtable_paginate .paginate_button.disabled,
#cash-table_paginate .paginate_button.disabled {
  color: #888;
  cursor: not-allowed;
  pointer-events: none;
}

#authtable td,
#authtable th {
  padding: 5px;
}

.menu-list li {
  margin-bottom: 5px;
}

div#data-table-checkbox-gp {
  max-width: 100vw;
  overflow: auto;
  max-height: 70vh;
}

div#data-table-checkbox-gp table.gp-new-table {
  font-size: .8rem;
}

div#data-table-checkbox-gp table.gp-new-table thead {
  position: sticky;
  top: -1px;
}

/* input[type="date"]::-webkit-calendar-picker-indicator, input[type="date"]::-moz-calendar-picker-indicator {
  cursor: pointer;
  background-color: #9f2d2d;
  color: rgb(202, 147, 147);
} */

#example_info,
#example_paginate {
  display: none;
}

.w-440px {
  width: 440px;
}

.w-150px {
  max-width: 150px;
}

.m-w-80vw {
  min-width: 80vw !important;
  max-width: 80vw !important;
  overflow: auto;
}

.m-h-80vh {
  max-height: 80vh !important;
  overflow: auto;
}

.my-2rem {
  margin: 2rem 0;
}

.td-input {
  outline: none;
  border: none;
  background: #ffffff;
  padding: .25rem;
}

.request-status {
  padding: .25rem;
  border-left-color: green;
  border-left-width: 5px;
}

.no-mb {
  margin-bottom: 0 !important;
}

.z-1000 {
  z-index: 1000 !important;
}

.round-badge {
  display: inline-flex;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
}

.font-12 {
  font-size: 12px;
}


#budgetActualChart {
  width: 100%;
  height: 300px;
}

.tfoot {
  background-color: #ffc10742;
  font-weight: 600;
}

.w-50px {
  width: 50px;
}

.bg-warning {
  background-color: #ffc10778 !important;
}

.up:hover {
  color: #28db58;
}

.down:hover {
  color: #d42d2d;
}

#role-table tr.ordered-roles:hover {
  background-color: #d7edff;
}

.bg-804147 {
  background-color: #804147;
}

.bg-4e5c51 {
  background-color: #4e5c51;
}

.f-1-2 {
  font-size: 1.2rem;
}

.freeze {
  position: sticky !important;
  left: 0;
}

.z-2 {
  z-index: 2000 !important;
}

.z-1 {
  z-index: 1000 !important;
}

.bg-inherit {
  background-color: inherit;
}

table#example tbody tr td:nth-child(1) {
  background-color: white;
  top: 105px !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(30%);
}

.user-note {
  font-size: .7rem;
  color: #7f7f7f;
}

.attimg {
  width: 100%;
}

table.approval-table.dataTable>tbody>tr>td {
  text-align: left;
  line-height: 24px;
}

table.dataTable.approval-table>thead>tr>th {
  text-align: left !important;
}

.nav-container input[type="checkbox"]:checked~.menu-items {
  transform: translateX(0);
  overflow: auto !important;
}

.navbar .menu-items {
  padding-top: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  height: 100vh;
  width: auto;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -15px;
  padding-left: 60px;
  padding-right: 90px;
  transition: transform 0.5s ease-in-out;
  width: 200px;
  text-align: left;
  margin-top: 69px;
  z-index: 1;
}

.table-show {
  position: relative;
  z-index: 0;
}