/* :root {
  --primary-clr: #88bd42;
  --secondary-clr: #fd3d59;
  --black-clr: #000;
  --white-clr: #fff;
  --bg-clr: #fafafa;
  --bg-lgt-clr: #f8f8f8;
  --card-bg: #f9f1fd;
  --green-clr: #32aa14;
  --red-clr: #ff0505;
  --pink-clr: #fd65c0;
  --yellow-clr: #ffcc40;
  --purple-clr: #783efd;
  --lgt-navy-clr: #6071cb;
  --dark-orange: #f65755;
  --theme-clr: #f7966b;
  --table-txt-clr: #404d61;
  --text-clr: #7c7c7c;
  --primary-font: "Neue Montreal";
  --spacer: 20px;
} */

/* phone number input */

.react-tel-input .form-control {
  width: 100% !important;
  height: 100% !important;
  padding: 18px 18px 18px 68px !important;
}

.react-tel-input .form-control:focus {
  background-color: #f4f6fa !important;
  border-color: none !important;
  outline: 0;
  box-shadow: none !important;
}

.react-tel-input .selected-flag:focus:before,
.react-tel-input .selected-flag.open:before {
  border-color: none !important;
  box-shadow: none !important;
}

/* .react-tel-input .selected-flag:focus:before,
.react-tel-input .selected-flag.open:before {
    border-color: #d2d6da !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
} */

.react-tel-input .form-control:focus {
  background-color: #fff;
  border-color: none !important;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.react-tel-input .selected-flag {
  width: 52px !important;
  padding: 0 0 0 18px !important;
  background: #f4f6fa !important;
}

.react-tel-input .flag-dropdown,
.react-tel-input .selected-flag {
  border-radius: 12px 0px 0px 12px !important;
}

/* modal class */

.overlay {
  position: fixed;
  inset: 0;
  /* Shorthand for top: 0; right: 0; bottom: 0; left: 0 */
  background-color: rgba(0, 0, 0, 0.5);
  /* Black background with 50% opacity */
  z-index: 50;
}

/* date picker custom css */

.react-datepicker-popper[data-placement^="bottom"] {
  padding-top: 10px !important;
  position: absolute !important;
  left: 0px !important;
  top: 0px !important;
  transform: translate(-1.25px, 63.5px) !important;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
  border: "none";
}

.react-datepicker {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: none !important;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #546e7a !important;
  display: inline-block;
  width: 2rem !important;
  line-height: 1.7rem !important;
  text-align: center !important;
  margin: 0.166rem !important;
  font-size: 0.875rem !important;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: var(--primary-clr) !important;
  font-weight: 500 !important;
  font-size: 0.944rem;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0 !important;
  padding: 10px 10px 14px 10px !important;
  position: relative;
}

.react-datepicker__day--selected,
.react-datepicker__day--in-selecting-range,
.react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: var(--primary-clr) !important;
  color: #fff !important;
}

.react-datepicker-wrapper {
  width: 100%;
}

.custom-date-picker-div {
  padding: 0px 11px;
  position: relative;
}

.custom-date-picker-div img {
  position: absolute;
  z-index: 1;
  right: 31px;
  top: 22px;
  width: 19px !important;
  height: 19px !important;
}

.custom-date-picker-div .react-datepicker-popper[data-placement^="bottom"] {
  left: 13px !important;
}

/* custom for top manager dashboard */
.dashboard-card-content h3 {
  font-size: 22px;
  font-family: "Neue Montreal";
}
.dashboard-card-top-stats {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.dashboard-card-top-stats div {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard-card-top-stats div p {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
  font-family: "Neue Montreal";
}

.dashboard-card-top-stats div span {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.68px;
  text-align: center;
}

/* date place holder */

input[type="date"]::before {
  content: attr(placeholder) !important;
  width: 100% !important;
}

input[type="date"]:focus::before,
input[type="date"]:valid::before {
  display: none !important;
}
.flex_wrap_container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 30px;
  overflow-x: auto;
  padding: 10px;
}
.flex_inner_box {
  max-width: 540px;
  min-width: 540px;
  width: 100%;
  /* background: gainsboro; */
  padding: 10px 1px;
  border-radius: 10px;
}

.added_product_outer_wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.added_product_group {
  position: relative;
  max-width: 337px;
  width: 100%;
}
.added_product_card {
  padding: 8px;
  background: #ddd;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 177px;
  align-items: center;
}
.added_product_card h3 {
  font-size: 16px;
  margin-bottom: 0px;
  padding-right: 18px;
}
button.drop_icon {
  width: 45px;
  height: 45px;
  background: rgb(1, 90, 13);
  border: 0px;
  position: absolute;
  content: "";
  top: -23px;
  right: -24px;
  transform: rotate(45deg);
}
.added_product_card_detail {
  background: #ffffff;
  position: absolute;
  content: "";
  top: calc(100% + 3px);
  left: 0;
  width: 100%;
  z-index: 1;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15);
}
.added_product_card_header {
  padding: 8px;
  background: var(--primary-clr);
  border-bottom: 1px solid #000;
}
.added_product_card_header h4 {
  font-size: 16px;
  margin-bottom: 0px;
  text-align: center;
}
.flex_between_blk {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.added_product_content h4 {
  width: 50px;
}
.added_product_content {
  padding: 8px;
}
.added_product_content p {
  width: calc(100% - 62px);
  white-space: break-spaces;
  word-wrap: break-word;
}
.added_product_content :is(h4, p) {
  font-size: 16px;
  margin-bottom: 0px;
}
.added_product_content:not(:last-child) {
  border-bottom: 1px solid #000;
}
