.body-overflow-hidden {
  overflow: hidden;
}
.order-tbl-btn {
  cursor: pointer;
  background: #7F54B3;
  color: #fff;
  border-radius: 4px;
  padding: 12px 22px;
  font-weight: bold;
  transition: 0.3s;
  border-color: transparent;
  border: none;
  display: inline-block;
  line-height: 1.2;
}
.manageorder-loading {
  width: 150px;
  height: 100px;
  position: absolute;
  top: 50%;
  background: #fff;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
}
.manageorder-loader {
  width: 48px;
  height: 48px;
  display: block;
  margin: 20px auto;
  position: relative;
  border: 3px solid #2c2c2c;
  border-radius: 50%;
  box-sizing: border-box;
  animation: animloader 2s linear infinite;
}
.manageorder-loader::after {
  content: '';  
  box-sizing: border-box;
  width: 6px;
  height: 24px;
  background: #2c2c2c;
  transform: rotate(-45deg);
  position: absolute;
  bottom: -20px;
  left: 46px;
}

@keyframes animloader {
  0% {
    transform: translate(-10px, -10px);
  }
  25% {
    transform: translate(-10px, 10px);
  }
  50% {
    transform: translate(10px, 10px);
  }
  75% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(-10px, -10px);
  }
}
.manageorder-invoice-items-card h4 {
  font-size: 18px;
}


.mo--customer__statistic--wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 25px
}
.mo--customer__statistic {
  border: 1px solid #7F54B3;
  padding: 15px 20px;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
.mo--customer__statistic span {
  font-weight: 500;
}
.mo--customer__statistic .count--number {
  font-weight: 600;
  background: #7F54B3;
  padding: 3px 10px;
  border-radius: 5px;
  color: #fff;
}

.mo-dashboard-review-slider {
    margin-top: 30px;
    margin-bottom: 50px;
}
.mo-dashboard-review-slider h6 {
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 15px;
    font-weight: 600;
}
.mo-dashboard-review-slider .mo-slider-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 15px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 5px;
}
.mo-dashboard-review-slider .mo-product-image img {
    width: 50px;
}
.mo-product-image {
    margin-right: 15px;
}
.mo-dashboard-review-slider .mo-product-info p {
    font-size: 15px !important;
    margin-top: 0;
    margin-bottom: 6px !important;
    line-height: 1.2;
}
.mo-dashboard-review-slider .mo-product-info a {
    font-size: 14px;
}
.mo-dashboard-review-slider .owl-dots {
    text-align: center;
}
.mo-dashboard-review-slider .owl-dots .owl-dot {
    width: 30px;
    height: 4px;
    margin: 0px 5px;
    border-radius: 5px;
    background: #111;
    transition: 0.4s;
}
.mo-dashboard-review-slider .owl-dots .owl-dot:hover,
.mo-dashboard-review-slider .owl-dots .owl-dot.active {
    background: #7F54B3;
}