* {
  font-family: "Tajawal", sans-sarif, serif, Tahoma;
}

body {
  margin: 0;
  background-image: linear-gradient(0deg, rgba(83, 65, 47, 0.0901960784) 1px, transparent 1px), linear-gradient(90deg, rgba(83, 65, 47, 0.0901960784) 1px, transparent 1px);
  background-size: 15px 15px;
}

input {
  display: block;
  padding: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 300ms ease;
  font-family: system-ui;
  font-weight: 500;
  letter-spacing: 1px;
}
input:hover {
  outline: green 1px solid;
}
input:focus {
  outline: #e7b093 4px solid;
}

input[type=number]:focus ~ body {
  filter: blur(5px);
}

table {
  width: 95%;
  margin: 20px auto;
  border-collapse: collapse;
}
table th, table td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: right;
}
table th {
  background-color: #f2f2f2;
}

.wrap-add-new-report {
  max-width: 700px;
  margin: 0 auto;
}

.product-item-row {
  display: flex;
  padding: 5px 10px;
  background: #f6f5f5;
  margin-bottom: 12px;
  align-items: center;
  border: 1px solid #ececec;
  border-radius: 7px;
}
.product-item-row:nth-child(odd) {
  background: #fbfbf9;
}
.product-item-row .image-wrap {
  flex: 1 1 93px;
}
.product-item-row .image-wrap img {
  border-radius: 7px;
  --slant: 15px;
  clip-path: polygon(0 0, calc(100% - var(--slant)) 0, 100% var(--slant), 100% 100%, var(--slant) 100%, 0 calc(100% - var(--slant)));
}
.product-item-row .image-text-inputs {
  flex: 1 1 calc(100% - 93px);
  padding-right: 10px;
}
.product-item-row .image-text-inputs h3 {
  margin: 0 0 13px;
  font-size: 15px;
  font-weight: 500;
  font-family: Tahoma, sans-sarif, serif;
  display: flex;
  justify-content: space-between;
}
.product-item-row .image-text-inputs h3 code {
  opacity: 0.7;
}
.product-item-row .image-text-inputs h3 .wrap-iconCheckSVG svg {
  transition: all 300ms ease;
  width: 1.5em;
  height: 1.5em;
}
.product-item-row .image-text-inputs h3 .wrap-iconCheckSVG svg path,
.product-item-row .image-text-inputs h3 .wrap-iconCheckSVG svg polygon,
.product-item-row .image-text-inputs h3 .wrap-iconCheckSVG svg rect {
  opacity: 0.1;
  transition: all 300ms ease;
  fill: #d0d0d0;
}
.product-item-row .image-text-inputs h3 .wrap-iconCheckSVG svg circle {
  transition: all 300ms ease;
  stroke: #d0d0d0;
  stroke-width: 2;
}
.product-item-row .image-text-inputs .inputs-area {
  display: flex;
  justify-content: space-between;
}
.product-item-row .image-text-inputs .inputs-area input {
  width: 100px;
}
.product-item-row .image-text-inputs .inputs-area input.wastage_today_error {
  background: rgba(249, 150, 150, 0.3294117647);
  border-color: red;
  outline-color: red;
}
.product-item-row .image-text-inputs label span {
  display: block;
  font-size: 13px;
  font-weight: 300;
}
.product-item-row.done-row {
  border-color: rgba(0, 128, 0, 0.2196078431);
}
.product-item-row.done-row .image-text-inputs h3 span {
  font-size: 13px;
}
.product-item-row.done-row .image-text-inputs h3 .wrap-iconCheckSVG svg {
  width: 1.5em;
  height: 1.5em;
}
.product-item-row.done-row .image-text-inputs h3 .wrap-iconCheckSVG svg path,
.product-item-row.done-row .image-text-inputs h3 .wrap-iconCheckSVG svg polygon,
.product-item-row.done-row .image-text-inputs h3 .wrap-iconCheckSVG svg rect {
  opacity: 1;
  fill: green;
}
.product-item-row.done-row .image-text-inputs h3 .wrap-iconCheckSVG svg circle {
  stroke: green;
  stroke-width: 2;
}
.product-item-row.error-row {
  border-color: rgba(128, 0, 45, 0.22);
  border-right: 2px solid red;
}
.product-item-row.error-row .image-text-inputs h3 .wrap-iconCheckSVG svg {
  width: 1.5em;
  height: 1.5em;
}
.product-item-row.error-row .image-text-inputs h3 .wrap-iconCheckSVG svg path,
.product-item-row.error-row .image-text-inputs h3 .wrap-iconCheckSVG svg polygon,
.product-item-row.error-row .image-text-inputs h3 .wrap-iconCheckSVG svg rect {
  opacity: 0;
  fill: red;
}
.product-item-row.error-row .image-text-inputs h3 .wrap-iconCheckSVG svg circle {
  stroke: red;
  stroke-width: 2;
}

.footer-bottom-info {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #4d2e2f;
  color: #fff;
  z-index: 999999;
}
.footer-bottom-info .footer-wrap-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  min-height: 55px;
  align-items: center;
}
.footer-bottom-info .footer-wrap-inner > * {
  flex: 1 1 50%;
}
.footer-bottom-info .footer-wrap-inner .info-side {
  display: flex;
  flex-direction: column;
}
.footer-bottom-info .footer-wrap-inner h4 {
  margin: 0;
}
.footer-bottom-info .footer-wrap-inner p {
  margin: 0;
}
.footer-bottom-info .footer-wrap-inner .data-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-bottom-info .footer-wrap-inner .data-side p {
  font-size: 17px;
  align-self: center;
  margin: 7px 20px 0 20px;
}
.footer-bottom-info .footer-wrap-inner .data-side #foot-submit-form {
  cursor: pointer;
  padding: 4px 18px 0 18px;
  font-size: 16px;
  line-height: 0;
  height: 40px;
  border: none;
  outline: none;
  --slant: 7px;
  clip-path: polygon(0 0, calc(100% - var(--slant)) 0, 100% var(--slant), 100% 100%, var(--slant) 100%, 0 calc(100% - var(--slant)));
  background: red;
  background: linear-gradient(45deg, #c1004b, #e28020);
  color: #fff0f0;
  transition: height 100ms ease-in-out;
}
.footer-bottom-info .footer-wrap-inner .data-side #foot-submit-form:hover {
  background: blue;
  background: linear-gradient(145deg, #c1004b, #e28020);
  height: 45px;
}

.woocommerce-Reviews {
  display: none;
}

.loading-svg {
  position: fixed;
  z-index: 99999;
  width: 100vh;
  height: 100vh;
  width: 100%;
  align-items: center;
  display: flex;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7803921569);
  justify-content: center;
}
.loading-svg img {
  max-width: 100px;
}

.wrap-maisra_user_info_report {
  font-size: 14px;
}

#reportListTable {
  width: 95%;
  margin: 20px auto;
  border-collapse: collapse;
  font-size: 14px;
}
#reportListTable .mai-header-table {
  background: blue;
}
#reportListTable .mai-header-table .head-row-table {
  align-items: center;
  text-align: right;
  background: #471517;
  color: #fff;
  height: 44px;
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  width: 100%;
}
#reportListTable .mai-header-table .head-row-table > * {
  flex: 1;
}
#reportListTable .mai-header-table .head-row-table .cell-id {
  padding-right: 10px;
}
#reportListTable .mai-header-table .head-row-table .cell-user {
  font-size: 11px;
}
#reportListTable .mai-header-table .head-row-table .cell-branch {
  padding-right: 15px;
  flex: 1 0 10%;
}
#reportListTable .mai-header-table .head-row-table .cell-action-buttons {
  flex: 1 0 50%;
  text-align: left;
  padding-left: 10px;
}
#reportListTable .mai-body-table {
  background: #fff;
  min-height: 100vh;
}
#reportListTable .mai-body-table .row-table-item {
  border-bottom: 1px solid #ddd;
  list-style: none;
  display: flex;
  padding: 1px;
  margin: 0;
  min-height: 50px;
  align-items: center;
}
#reportListTable .mai-body-table .row-table-item > * {
  flex: 1;
}
#reportListTable .mai-body-table .row-table-item .cell-id {
  text-align: right;
  padding-right: 10px;
}
#reportListTable .mai-body-table .row-table-item .cell-user {
  font-size: 11px;
}
#reportListTable .mai-body-table .row-table-item .cell-branch {
  flex: 1 0 10%;
  padding-right: 15px;
}
#reportListTable .mai-body-table .row-table-item .cell-action-buttons {
  flex: 1 0 50%;
  text-align: left;
}
#reportListTable .data-t {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: right;
}
#reportListTable .td-id {
  text-align: right;
  padding-right: 10px;
}
#reportListTable .td-buttons a {
  color: #472829;
  background: #EEEEEE;
  padding: 7px 15px 2px 15px;
  --slant: 7px;
  clip-path: polygon(0 0, calc(100% - var(--slant)) 0, 100% var(--slant), 100% 100%, var(--slant) 100%, 0 calc(100% - var(--slant)));
  transition: all 300ms ease;
  text-decoration: none;
  text-align: center;
  margin: 0 4px 0 4px;
}
#reportListTable .td-buttons a:hover, #reportListTable .td-buttons a:active {
  outline: 2px solid #fa71a5;
  background: #c1004b;
  color: #fff0f0;
}
#reportListTable .td-buttons a.buttonPDFDownload:hover, #reportListTable .td-buttons a.buttonPDFDownload:active {
  background: #192ae4;
  color: #fff0f0;
}
#reportListTable .td-buttons a.buttonExcelDownload:hover, #reportListTable .td-buttons a.buttonExcelDownload:active {
  background: #126300;
  color: #fff0f0;
}

.all-branch {
  background: rgb(71, 21, 23);
  color: #fff0f0;
}

.maisra-tag {
  background: #c1004b;
  color: #fff0f0;
  font-size: 11px;
  padding: 6px 7px 4px 7px;
  border-radius: 10px;
}

.branch-arabic-house {
  background: #190a0a;
  color: #fff;
}

.branch-doha {
  background: #c1004b;
  color: #fff;
}

.branch-al-sakhama {
  background: #027167;
  color: #fff;
}

.branch-muaither {
  background: #9306c0;
  color: #fff;
}

.branch-al-shahaniya {
  background: #122e98;
  color: #fff;
}

.filtersOptions {
  margin: 0;
}

.filterByBranch {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 10px 0;
  padding: 0;
}
.filterByBranch li {
  cursor: pointer;
  list-style: none;
  margin: 0 0 0 15px;
  padding: 9px 15px 5px 15px;
  position: relative;
}
.filterByBranch li span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  right: 3px;
}
.filterByBranch li.branch-active {
  background: #bfb5aa;
  background: linear-gradient(45deg, rgba(208, 199, 202, 0), #bfb5aa);
  color: #111;
  border-radius: 17px;
}
.filterByBranch li:hover, .filterByBranch li:active {
  background: #bfb5aa;
  background: linear-gradient(45deg, rgba(208, 199, 202, 0), #bfb5aa);
  color: #111;
  border-radius: 17px;
}

#content {
  background: radial-gradient(rgba(162, 162, 162, 0.71), rgba(255, 255, 255, 0.72));
}

.reportValuesTable {
  background: #fff;
}
.reportValuesTable .inner-data-caption {
  display: flex;
  justify-content: space-between;
}
.reportValuesTable .inner-data-caption > * {
  display: flex;
  margin: 0;
}

@media screen and (max-width: 576px) {
  .product-item-row {
    flex-direction: row;
  }
  .product-item-row .image-text-inputs .inputs-area {
    flex-direction: row;
  }
  .product-item-row .image-text-inputs .inputs-area label input {
    width: 100px;
  }
  .product-item-row .image-wrap {
    flex: 1 1 70px;
  }
  .footer-bottom-info .footer-wrap-inner .data-side {
    flex: 1 1 70%;
  }
  .footer-bottom-info .footer-wrap-inner h4 {
    margin: 0;
    font-size: 10px;
    font-weight: 300;
  }
}
.wrap-maisra_user_info_report {
  display: flex;
  flex-direction: column;
}

.htmlReportDetails.opened-tab td {
  background: #f4f4f4;
}
.htmlReportDetails table {
  width: 90%;
}

.wrap-branchesReports {
  display: flex;
  flex-wrap: wrap;
}
.wrap-branchesReports .branch-box {
  flex: 1 1 25%;
  padding: 5px;
}
.wrap-branchesReports .branch-box .inner-box .overlay-content {
  background: rgba(221, 221, 255, 0.6);
}

@media screen and (max-width: 240px) {
  .product-item-row {
    flex-direction: column;
  }
  .product-item-row .image-text-inputs .inputs-area {
    flex-direction: column;
  }
  .product-item-row .image-wrap {
    flex: 1 1 40px;
  }
}

/*# sourceMappingURL=main_core.css.map */
