@charset "UTF-8";
/*********************************************************
  // global color variables
**********************************************************/
/*********************************************************
  // Font variables
**********************************************************/
/*********************************************************
  // spacing variables
**********************************************************/
/*********************************************************
  // screens
**********************************************************/
/* Main properties that control the layout direction are:
-----------------------------------------------
- Direction (LTR/RTL)
- Float (left/right)
- Margin 
- Padding
- Absolute position (left/right)
- Background position (left/right)
- Border
- Border radious
- Note: "Think about flexbox properties"
*/
/* Clearfix */
/* Direction */
/* Float */
/* Margin */
/* Padding */
/* Left And Right For Absolute Position */
/* Border */
/*********************************************************
  // global color variables
**********************************************************/
/*********************************************************
  // Font variables
**********************************************************/
/*********************************************************
  // spacing variables
**********************************************************/
/*********************************************************
  // screens
**********************************************************/
* {
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "HSDream-Light";
  src: url("../fonts/din-next-lt-w23-regular.ttf");
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "HSDream-Light", sans-serif, "Font Awesome 5 Free";
  overflow-x: hidden;
}
html[lang=en] body {
  direction: ltr;
  text-align: left;
}
html[lang=ar] body {
  direction: rtl;
  text-align: right;
}
body.light-theme {
  background-color: #ffffff;
  color: #555555;
}
body.dark-theme {
  color: #ffffff;
  background-color: #031122;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

p {
  color: #a9a9a9;
  margin: 0;
  font-size: 1em;
}

input:focus::placeholder {
  color: transparent;
}

*::placeholder {
  color: #444;
  transition: all 0.3s ease;
}

form {
  padding: 0;
  margin: 0 auto;
  width: 100%;
}
html[lang=en] form {
  text-align: left;
}
html[lang=ar] form {
  text-align: right;
}

a {
  text-decoration: none !important;
}

.owl-carousel {
  touch-action: manipulation;
}

ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

button,
input[type=submit] {
  cursor: pointer;
}

button,
a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

select:focus,
button:focus,
input:focus {
  outline: 0;
}

/* owl carousel*/
.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item {
  -ms-touch-action: auto;
  touch-action: auto;
}

/* owl carousel*/
@media (min-width: 1720px) {
  .container {
    max-width: 1418px;
  }
}
/*********************************************************
  // global color variables
**********************************************************/
/*********************************************************
  // Font variables
**********************************************************/
/*********************************************************
  // spacing variables
**********************************************************/
/*********************************************************
  // screens
**********************************************************/
.top-header {
  padding: 12px 0;
  background: #fff;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.16);
  margin-bottom: 45px;
  border-radius: 0 0 5px 5px;
}
@media (max-width: 425px) {
  .top-header {
    margin-bottom: 30px;
  }
}
.top-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-header .center {
  display: flex;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top-header .center {
    margin: 0;
  }
}
.top-header .center .logo {
  height: 75px;
  object-fit: cover;
}
html[lang=en] .top-header .center .logo {
  transform: translateX(50%);
}
@media (max-width: 768px) {
  html[lang=en] .top-header .center .logo {
    transform: none;
  }
}
html[lang=ar] .top-header .center .logo {
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  html[lang=ar] .top-header .center .logo {
    transform: none;
  }
}
@media (max-width: 425px) {
  .top-header .center .logo {
    height: 60px;
  }
}

.lang .dropdown-menu {
  min-width: 99px;
  padding: 5px 10px;
}
.lang .dropdown-menu .dropdown-item {
  padding: 0;
}
.lang .dropdown-menu .dropdown-item:hover, .lang .dropdown-menu .dropdown-item:focus {
  background-color: #fff;
}
.lang .dropdown-menu .dropdown-item:active {
  color: #000;
  background-color: #fff;
}
.lang button {
  background: transparent;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 14px;
}
.lang button img {
  width: 25px;
  height: 15px;
}
html[lang=en] .lang button img {
  margin-right: 13px;
}
html[lang=ar] .lang button img {
  margin-left: 13px;
}

.main-title {
  font-size: 24px;
  color: #353333;
  margin-bottom: 20px;
}
.main-title.md-title {
  font-size: 20px;
  font-weight: 400;
}
.main-title.sm {
  font-size: 18px;
  font-weight: 400;
}
.main-title.bold {
  font-weight: 500;
}

i {
  font-weight: 900 !important;
}

.layout-shadow {
  padding: 25px 15px;
  box-shadow: 0px 0px 2px #949494;
  border-radius: 6px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .layout-shadow {
    padding: 20px 15px;
  }
}

.label {
  margin-bottom: 20px;
  font-size: 17px;
  color: #191919;
  display: block;
}

.main-input {
  width: 100%;
  min-height: 45px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  background-color: #f5f5f5;
}
.main-input .icon {
  position: absolute;
  top: 50%;
  font-size: 18px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #bfbfbf;
}
html[lang=en] .main-input .icon {
  right: 20px;
}
html[lang=ar] .main-input .icon {
  left: 20px;
}
.main-input .icon.pup-cl {
  color: #6F105F;
}

.form-group {
  margin-bottom: 32px;
}
@media (max-width: 425px) {
  .form-group {
    margin-bottom: 22px;
  }
}

.forget-password {
  font-size: 16px;
  color: #666666 !important;
  display: flex;
  justify-content: flex-end;
}

.custom-btn {
  min-width: 140px;
  border-radius: 6px;
  color: #fff;
  background-color: #6F105F;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  height: 45px;
  font-size: 19px;
  max-width: 100%;
}
.custom-btn:hover {
  color: #fff;
}
.custom-btn.lg-btn {
  min-width: 220px;
}

.f-password {
  display: flex;
  justify-content: flex-end;
  text-decoration: underline !important;
  color: #262626;
  margin-bottom: 10px;
}

.nav-header {
  padding: 15px 0;
  margin-bottom: -15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-header .logo {
  display: block;
}
.nav-header .logo img {
  width: 165px;
  height: 100px;
  object-fit: cover;
}
@media (max-width: 1280px) {
  .nav-header .logo img {
    width: 130px;
    height: 80px;
  }
}
@media (max-width: 425px) {
  .nav-header .logo img {
    width: 100px;
    height: 60px;
  }
}
.nav-header .nav-links {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .nav-header .nav-links {
    position: fixed;
    padding: 20px 0;
    top: 0;
    width: 200px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 4;
    flex-direction: column;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  html[lang=en] .nav-header .nav-links {
    left: 0;
  }
  html[lang=ar] .nav-header .nav-links {
    right: 0;
  }
  html[lang=en] .nav-header .nav-links {
    transform: translateX(-100%);
  }
  html[lang=ar] .nav-header .nav-links {
    transform: translateX(100%);
  }
  html[lang=en] .nav-header .nav-links.active {
    transform: translateX(0);
  }
  html[lang=ar] .nav-header .nav-links.active {
    transform: translateX(0);
  }
}
.nav-header .nav-links .link {
  display: block;
  font-size: 19px;
  color: #000;
  transition: 0.5s;
}
@media (max-width: 1280px) {
  .nav-header .nav-links .link {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .nav-header .nav-links .link {
    font-size: 20px;
    color: #fff;
  }
}
.nav-header .nav-links .link.active, .nav-header .nav-links .link:hover {
  font-weight: bold;
  color: #f26523;
}
html[lang=en] .nav-header .nav-links li:not(:last-child) {
  margin-right: 80px;
}
html[lang=ar] .nav-header .nav-links li:not(:last-child) {
  margin-left: 80px;
}
@media (max-width: 1600px) {
  html[lang=en] .nav-header .nav-links li:not(:last-child) {
    margin-right: 35px;
  }
  html[lang=ar] .nav-header .nav-links li:not(:last-child) {
    margin-left: 35px;
  }
}
@media (max-width: 1280px) {
  html[lang=en] .nav-header .nav-links li:not(:last-child) {
    margin-right: 20px;
  }
  html[lang=ar] .nav-header .nav-links li:not(:last-child) {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .nav-header .nav-links li:not(:last-child) {
    margin-bottom: 35px;
  }
  html[lang=en] .nav-header .nav-links li:not(:last-child) {
    margin-right: 0px;
  }
  html[lang=ar] .nav-header .nav-links li:not(:last-child) {
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .nav-header .left {
    display: flex;
    align-items: center;
  }
}
.nav-header .left .lang {
  display: none;
}
@media (max-width: 768px) {
  .nav-header .left .lang {
    display: block;
    background: #f26523;
    padding: 7px 6px;
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .nav-header .left .lang span {
    display: none;
  }
}
.nav-header .left .lang button::after {
  display: none;
}
.nav-header .left .sign-link {
  font-size: 14px;
  color: #fff;
  background: #f26523;
  padding: 13px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .nav-header .left .sign-link {
    padding: 8px 10px;
    font-size: 18px;
  }
  html[lang=en] .nav-header .left .sign-link {
    margin-left: 10px;
  }
  html[lang=ar] .nav-header .left .sign-link {
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .nav-header .left .sign-link span {
    display: none;
  }
}
.nav-header .left .sign-link i {
  display: none;
}
@media (max-width: 768px) {
  .nav-header .left .sign-link i {
    display: block;
  }
}

.nav-btn {
  background: transparent;
  width: 30px;
  height: 20px;
  position: relative;
  display: none;
  padding: 0;
}
html[lang=en] .nav-btn {
  margin-left: 15px;
}
html[lang=ar] .nav-btn {
  margin-right: 15px;
}
@media (max-width: 768px) {
  .nav-btn {
    display: block;
  }
}
.nav-btn span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #f26523;
  transition: 0.5s;
  left: 0;
}
.nav-btn span:nth-child(1) {
  top: 0;
}
.nav-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.nav-btn span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
.nav-btn.active span:first-child {
  top: 50%;
  transform: rotate(45deg);
  transition: 0.5s;
}
.nav-btn.active span:nth-child(2) {
  opacity: 0;
}
html[lang=en] .nav-btn.active span:nth-child(2) {
  transform: translateX(-150%);
}
html[lang=ar] .nav-btn.active span:nth-child(2) {
  transform: translateX(150%);
}
.nav-btn.active span:last-child {
  top: 50%;
  transform: rotate(-45deg);
  transition: 0.5s;
}

@media (max-width: 768px) {
  .nav-overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: #000;
    opacity: 0.5;
    transition: 0.5s;
  }
  html[lang=en] .nav-overlay {
    transform: translateX(100%);
  }
  html[lang=ar] .nav-overlay {
    transform: translateX(-100%);
  }
  html[lang=en] .nav-overlay {
    right: 0;
  }
  html[lang=ar] .nav-overlay {
    left: 0;
  }
  html[lang=en] .nav-overlay.show {
    transform: translateX(0);
  }
  html[lang=ar] .nav-overlay.show {
    transform: translateX(0);
  }
}

.t-center {
  color: #000;
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
}

.verify-input {
  width: 50px;
  background-color: transparent;
}

body {
  background-color: #f5f5f5;
}

.d-table-order {
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background: #fff;
  padding: 20px;
}
.d-table-order .table td,
.d-table-order .table th {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}
.d-table-order thead th {
  border: none;
}

.add-opinion {
  padding: 0 20px;
}
@media (max-width: 425px) {
  .add-opinion {
    padding: 0 5px;
  }
}

.filter-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.filter-side.filter-date {
  justify-content: normal;
}
@media (max-width: 425px) {
  .filter-side.filter-date {
    justify-content: center;
  }
}
html[lang=en] .filter-side.filter-date .table-select:not(:last-child) {
  margin-right: 30px;
}
html[lang=ar] .filter-side.filter-date .table-select:not(:last-child) {
  margin-left: 30px;
}
@media (max-width: 425px) {
  html[lang=en] .filter-side.filter-date .table-select:not(:last-child) {
    margin-right: 0;
  }
  html[lang=ar] .filter-side.filter-date .table-select:not(:last-child) {
    margin-left: 0;
  }
}
.filter-side .dataTables_filter {
  order: 2;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .filter-side .dataTables_filter {
    margin: 0 20px;
  }
}
@media (max-width: 768px) {
  .filter-side .dataTables_filter {
    margin: 0;
    margin-top: 15px;
    order: 5;
    width: 100%;
  }
}
.filter-side .dataTables_filter label {
  display: flex;
  margin-bottom: 0;
  align-items: center;
  flex-direction: row-reverse;
  height: 45px;
  background-color: #f9f9f9;
  border: 1px solid #f9f9f9;
  border-radius: 5px;
  max-width: 100%;
  overflow: hidden;
  width: 450px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .filter-side .dataTables_filter label {
    width: 400px;
  }
}
@media (max-width: 768px) {
  .filter-side .dataTables_filter label {
    width: 100%;
  }
}
.filter-side .dataTables_filter input {
  width: 100%;
  height: 100%;
  border: 0;
  background: #f5f5f5;
  color: #737373;
}
.filter-side .dataTables_filter input:focus {
  box-shadow: none;
  border-color: none;
}
.filter-side .dataTables_filter .filter-btn {
  padding: 0;
  margin: 0;
  width: 50px;
  height: 100%;
  background: #6F105F;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.filter-side .dataTables_length {
  order: 1;
}
.filter-side .dataTables_length label {
  position: relative;
  width: 125px;
  flex-shrink: 0;
  margin-bottom: 0;
}
.filter-side .dataTables_length label::before {
  position: absolute;
  content: "\f107";
  top: 50%;
  transform: translateY(-35%);
  color: #9f9f9f;
  font-weight: 900;
  font-size: 15px;
  pointer-events: none;
}
html[lang=en] .filter-side .dataTables_length label::before {
  right: 10px;
}
html[lang=ar] .filter-side .dataTables_length label::before {
  left: 10px;
}
@media (max-width: 425px) {
  .filter-side .dataTables_length label {
    margin-bottom: 15px;
  }
}
html[lang=en] .filter-side .custom-select {
  margin-left: 15px;
}
html[lang=ar] .filter-side .custom-select {
  margin-right: 15px;
}
.filter-side .custom-select:focus {
  box-shadow: none;
  border-color: inherit;
}
@media (max-width: 768px) {
  html[lang=en] .filter-side .custom-select {
    margin-left: 5px;
  }
  html[lang=ar] .filter-side .custom-select {
    margin-right: 5px;
  }
}
.filter-side .hint-select {
  font-size: 13px;
  color: #535455;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.filter-side .custom-select-sm {
  font-size: 14px;
  color: #9f9f9f;
  background: #f9f9f9;
  background-image: none;
  height: 30px;
  padding: 5px !important;
}
.filter-side .main-table-btn {
  font-size: 17px;
  flex-shrink: 0;
  border-radius: 6px;
  color: #fff;
  background-color: #6F105F;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  max-width: 100%;
}
.filter-side .main-table-btn .dropdown-menu {
  min-width: 100%;
}
.filter-side .main-table-btn .dropdown-menu:active .dropdown-item {
  background-color: transparent;
  color: #000;
}
.filter-side .main-table-btn .dropdown-menu .dropdown-item {
  padding: 5px 7px;
}
.filter-side .main-table-btn .dropdown-menu .dropdown-item:active {
  background-color: transparent;
  color: #000;
}
html[lang=en] .filter-side .main-table-btn i {
  margin-right: 10px;
}
html[lang=ar] .filter-side .main-table-btn i {
  margin-left: 10px;
}
@media (max-width: 425px) {
  .filter-side .main-table-btn {
    margin-bottom: 15px;
  }
}
.filter-side > a {
  padding: 10px;
  min-width: 200px;
}

.anchor-head-table {
  padding: 10px;
  min-width: 200px;
}

.info-card .item {
  padding: 25px 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
}
.info-card .item .item-img {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-bottom: 20px;
}
html[lang=en] .info-card .item .item-img {
  margin-right: 20px;
}
html[lang=ar] .info-card .item .item-img {
  margin-left: 20px;
}
.info-card .item .item-img .img {
  width: 26px;
  height: 33px;
  object-fit: cover;
}
.info-card .item .num {
  font-size: 23px;
  color: #535455;
}
.info-card .item .text {
  font-size: 17px;
  color: #9f9f9f;
  text-align: center;
  height: 45px;
}
@media (max-width: 425px) {
  .info-card .item .text {
    height: auto;
  }
}
.info-card .col-12:nth-child(1) .item-img {
  background: #e3ea30;
}
.info-card .col-12:nth-child(2) .item-img {
  background: rgba(89, 224, 215, 0.35);
}
.info-card .col-12:nth-child(3) .item-img {
  background: rgba(242, 172, 93, 0.35);
}
.info-card .col-12:nth-child(4) .item-img {
  background: rgba(116, 225, 103, 0.35);
}
.info-card .col-12:nth-child(5) .item-img {
  background: rgba(206, 206, 206, 0.35);
}

.main-status-order .main {
  display: flex;
  align-items: center;
  padding-bottom: 9px;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.main-status-order .main::-webkit-scrollbar {
  display: none;
}
.main-status-order .status-order {
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.3s;
  background-color: transparent;
  flex-shrink: 0;
}
html[lang=en] .main-status-order .status-order:not(:last-child) {
  margin-right: 10px;
}
html[lang=ar] .main-status-order .status-order:not(:last-child) {
  margin-left: 10px;
}
.main-status-order .status-order::before {
  position: absolute;
  content: "";
  top: 100%;
  width: 0;
  height: 3px;
  margin-top: 7px;
  opacity: 0;
  overflow: hidden;
  transition: 0.5s;
}
html[lang=en] .main-status-order .status-order::before {
  left: 0;
}
html[lang=ar] .main-status-order .status-order::before {
  right: 0;
}
.main-status-order .status-order.active::before {
  background-color: #6F105F;
  opacity: 1;
  overflow: visible;
  width: 100%;
}
.main-status-order .status-order.active .st-hint, .main-status-order .status-order.active .st-num {
  color: #6F105F;
}
.main-status-order .status-order .st-hint {
  font-size: 20px;
  color: #9f9f9f;
  transition: 0.3s;
}
html[lang=en] .main-status-order .status-order .st-hint {
  margin-right: 12px;
}
html[lang=ar] .main-status-order .status-order .st-hint {
  margin-left: 12px;
}
.main-status-order .status-order .st-num {
  width: 50px;
  height: 26px;
  border-radius: 13px;
  padding: 5px 10px;
  font-size: 14px;
  color: #737373;
  background-color: #F5F5F5;
}

.tab-order {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.tab-order .custom-btn {
  background-color: #fff;
  color: #000;
}
html[lang=en] .tab-order .custom-btn:not(:last-child) {
  margin-right: 25px;
}
html[lang=ar] .tab-order .custom-btn:not(:last-child) {
  margin-left: 25px;
}
.tab-order .custom-btn.active {
  color: #fff;
  background-color: #6F105F;
}

.main-layout-shadow {
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.13);
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}

.Statistics-card {
  padding: 30px 0;
}
@media (min-width: 1280px) {
  .Statistics-card .card-row .col-xl-2 {
    flex: 0 0 19.9999%;
    max-width: 19.9999%;
  }
}

.print-container .body-content {
  min-height: 100%;
  padding: 60px 20px 30px;
  position: relative;
}
.print-container .body-content .icon-print {
  background: transparent;
  position: absolute;
  top: 10px;
}
html[lang=en] .print-container .body-content .icon-print {
  right: 10px;
}
html[lang=ar] .print-container .body-content .icon-print {
  left: 10px;
}
.print-container .body-content .icon-print img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.print-container .body-content .close {
  position: absolute;
  top: 10px;
  font-size: 35px;
}
html[lang=en] .print-container .body-content .close {
  left: 15px;
}
html[lang=ar] .print-container .body-content .close {
  right: 15px;
}
.print-container .body-content .close span {
  color: #000;
}
.print-container .body-content .the_Bill {
  border: 1px solid #eee;
  border-radius: 10px;
  width: 500px;
  max-width: 100%;
  padding: 15px;
  background: #ffffff;
  margin: auto;
}
.print-container .body-content .the_Bill .logo {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 5px;
}
.print-container .body-content .the_Bill .adress {
  margin: 0 auto 20px;
  max-width: 280px;
  font-size: 12px;
  text-align: center;
}
.print-container .body-content .hr {
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
  border: 1px dashed #999;
  margin: 15px 0;
}
.print-container .body-content .float_R {
  float: right;
  color: #323232;
}
.print-container .body-content .float_R span {
  color: #323232;
}
.print-container .body-content .float_L {
  float: left;
  color: #323232;
}
.print-container .body-content .float_L span {
  color: #323232;
}
.print-container .body-content .info_bill ul {
  overflow: hidden;
  margin: 4px 0;
}
.print-container .body-content .title {
  color: #464646;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  overflow: hidden;
}
.print-container .body-content .info_order li {
  margin: 5px 0;
  overflow: hidden;
}
.print-container .body-content .par_code img {
  width: 116px;
  height: 116px;
  display: block;
  margin: auto;
  padding: 5px;
  border-radius: 5px;
  margin-top: 25px;
}
.print-container .body-content ::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}
.print-container .body-content ::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 20px;
  cursor: pointer;
}
.print-container .body-content ::-webkit-scrollbar-thumb:hover {
  background: #484747;
}

@media print {
  /*print css here*/
  body * {
    visibility: hidden;
  }

  .icon-print {
    display: none;
  }

  .close {
    display: none;
  }

  .body-content .the_Bill {
    border-color: transparent;
  }

  .body-content .par_code img {
    border-color: transparent;
  }

  .print-container,
.print-container * {
    visibility: visible;
  }
}
.bill-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .bill-section {
    position: static;
    justify-content: space-between;
  }
}
.bill-section .anchor-bill {
  position: absolute;
  border-radius: 6px;
  color: #fff;
  background-color: #6F105F;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  height: 45px;
}
html[lang=en] .bill-section .anchor-bill {
  right: 0;
}
html[lang=ar] .bill-section .anchor-bill {
  left: 0;
}
@media (max-width: 425px) {
  .bill-section .anchor-bill {
    position: static;
    padding: 15px 10px;
    height: 40px;
  }
}
html[lang=en] .bill-section .anchor-bill .img-bill {
  margin-right: 15px;
}
html[lang=ar] .bill-section .anchor-bill .img-bill {
  margin-left: 15px;
}
.bill-section .anchor-bill.red-cl {
  background-color: #eb2222;
  min-width: 170px;
  max-width: 100%;
}

.switch {
  display: flex;
  margin-bottom: 0;
}
@media (max-width: 320px) {
  .switch {
    margin-bottom: 12px;
  }
}
.switch input {
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.switch small {
  display: inline-block;
  width: 82px;
  height: 28px;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.16);
  border-radius: 30px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 375px) {
  .switch small {
    margin-top: 15px;
  }
}
.switch small:after {
  content: "";
  position: absolute;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  padding: 0 6px;
  box-sizing: border-box;
  line-height: 18px;
  top: 50%;
  transform: translateY(-50%);
}
html[lang=en] .switch small:after {
  right: 0;
}
html[lang=ar] .switch small:after {
  left: 0;
}
html[lang=en] .switch small:after {
  text-align: left;
}
html[lang=ar] .switch small:after {
  text-align: right;
}
.switch small:before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  background: #f12727;
  border-radius: 50%;
  top: 3px;
  transition: 0.3s;
  box-shadow: -3px 0 3px rgba(0, 0, 0, 0.1);
}
html[lang=en] .switch small:before {
  right: 3px;
}
html[lang=ar] .switch small:before {
  left: 3px;
}
.switch input:checked ~ small {
  transition: 0.3s;
}
.switch input:checked ~ small:before {
  background-color: #52C535;
  transition: 0.3s;
}
html[lang=en] .switch input:checked ~ small:before {
  transform: translate(-55px, 0px);
}
html[lang=ar] .switch input:checked ~ small:before {
  transform: translate(55px, 0px);
}
.switch input:checked ~ small:after {
  content: "ظهور";
}
html[lang=en] .switch input:checked ~ small:after {
  text-align: right;
}
html[lang=ar] .switch input:checked ~ small:after {
  text-align: left;
}

.select-group {
  display: flex;
  align-items: center;
}
@media (max-width: 425px) {
  .select-group {
    flex-direction: column;
  }
}
.select-group .sel-2-input {
  flex-grow: 1;
}
@media (max-width: 425px) {
  .select-group .sel-2-input {
    width: 100%;
  }
}
html[lang=en] .select-group .sel-2-input:not(:last-child) {
  margin-right: 15px;
}
html[lang=ar] .select-group .sel-2-input:not(:last-child) {
  margin-left: 15px;
}
@media (max-width: 425px) {
  html[lang=en] .select-group .sel-2-input:not(:last-child) {
    margin-right: 0;
  }
  html[lang=ar] .select-group .sel-2-input:not(:last-child) {
    margin-left: 0;
  }
}

.img-uploader {
  box-shadow: none !important;
}
.img-uploader .upload-preview {
  margin-top: 10px;
  width: 100px;
  height: 100px;
  position: relative;
}
.img-uploader .upload-preview img {
  width: 100px;
  cursor: pointer;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
}
.img-uploader .remove-appendedd {
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 14px;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #ed1c24;
  border-radius: 50%;
  font-style: normal;
  cursor: pointer;
  transform: none;
}
html[lang=en] .img-uploader .remove-appendedd {
  right: 5px !important;
}
html[lang=ar] .img-uploader .remove-appendedd {
  left: 5px !important;
}

.inner-radio-2 .radio {
  margin-bottom: 15px;
}
html[lang=en] .inner-radio-2 .radio:not(:last-child) {
  margin-right: 70px;
}
html[lang=ar] .inner-radio-2 .radio:not(:last-child) {
  margin-left: 70px;
}
@media (max-width: 425px) {
  html[lang=en] .inner-radio-2 .radio:not(:last-child) {
    margin-right: 50px;
  }
  html[lang=ar] .inner-radio-2 .radio:not(:last-child) {
    margin-left: 50px;
  }
}
.inner-radio-2 .check-inner {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.inner-radio-2 .hint-text {
  transition: 0.4s;
}
.inner-radio-2 .radio-body {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.13px solid #670acb;
  border-radius: 50%;
  transition: 0.4s;
  flex-shrink: 0;
}
html[lang=en] .inner-radio-2 .radio-body {
  margin-right: 10px;
}
html[lang=ar] .inner-radio-2 .radio-body {
  margin-left: 10px;
}
.inner-radio-2 .radio-body i {
  font-size: 10px;
  color: #fff;
  transition: 0.4s;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}
@media (max-width: 425px) {
  .inner-radio-2 .radio-body i {
    font-size: 10px;
  }
}
.inner-radio-2 .box-check:checked + .check-inner .radio-body {
  background-color: #670acb;
}
.inner-radio-2 .box-check:checked + .check-inner .radio-body i {
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.inner-radio-2 .box-check:checked + .check-inner .hint-text {
  color: #000;
}

.check-group {
  border-radius: 5px;
  padding: 20px 30px 5px;
  background-color: #f5f5f5;
}
.check-group .input {
  flex-wrap: wrap;
}
.check-group .accept-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .check-group .accept-check {
    margin-bottom: 10px;
  }
}
html[lang=en] .check-group .accept-check:not(:last-child) {
  margin-right: 35px;
}
html[lang=ar] .check-group .accept-check:not(:last-child) {
  margin-left: 35px;
}
@media (max-width: 768px) {
  html[lang=en] .check-group .accept-check:not(:last-child) {
    margin-right: 15px;
  }
  html[lang=ar] .check-group .accept-check:not(:last-child) {
    margin-left: 15px;
  }
}
.check-group .accept-check .box-check:checked + .check-inner .span-check {
  background-color: #670acb;
  border-color: #670acb;
}
.check-group .accept-check .box-check:checked + .check-inner .span-check i {
  display: block;
}
.check-group .accept-check .box-check:checked + .check-inner .hint-inner-text {
  color: #191919;
}
.check-group .accept-check .check-inner {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.check-group .accept-check .check-inner .span-check {
  width: 16px;
  height: 16px;
  transition: all 0.3s;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #670acb;
  color: #fff;
  cursor: pointer;
}
html[lang=en] .check-group .accept-check .check-inner .span-check {
  margin-right: 8px;
}
html[lang=ar] .check-group .accept-check .check-inner .span-check {
  margin-left: 8px;
}
.check-group .accept-check .check-inner .span-check i {
  display: none;
  color: #fff;
  font-size: 10px;
}
.check-group .accept-check .check-inner .hint,
.check-group .accept-check .check-inner a {
  font-size: 16px;
  color: #4c5264;
  font-weight: bold;
}
.check-group .accept-check .radio-inner .hint-radio {
  padding: 5px;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #afafaf;
  color: #fff;
  cursor: pointer;
}
.check-group .accept-check .radio-inner .check-color {
  display: none;
  width: 100%;
  height: 100%;
  background: #721f89;
  border-radius: 50%;
  transition: all 0.3s;
}
.check-group .accept-check .box-check:checked + .radio-inner .hint-radio .check-color {
  display: none;
}
.check-group .accept-check .hint-inner-text {
  font-size: 15px;
  color: #666666;
}
.check-group .accept-check .check-btn {
  margin-bottom: 0;
}
@media (max-width: 320px) {
  .check-group .accept-check .check-btn {
    margin-bottom: 10px;
  }
}
html[lang=en] .check-group .inner-radio {
  margin-right: 60px;
}
html[lang=ar] .check-group .inner-radio {
  margin-left: 60px;
}
@media (max-width: 1440px) {
  html[lang=en] .check-group .inner-radio {
    margin-right: 40px;
  }
  html[lang=ar] .check-group .inner-radio {
    margin-left: 40px;
  }
}
@media (max-width: 768px) {
  html[lang=en] .check-group .inner-radio {
    margin-right: 25px;
  }
  html[lang=ar] .check-group .inner-radio {
    margin-left: 25px;
  }
}
.check-group .inner-radio label {
  margin-bottom: 0;
}
.check-group .inner-radio .hint-inner {
  width: 16px;
  height: 16px;
  border-color: #a7cfd9;
}
.check-group .inner-radio .hint-inner .radio-body {
  width: 8px;
  height: 8px;
  background-color: #a7cfd9;
}
.check-group .inner-radio .hint-text {
  font-size: 15px;
  color: #666666;
}

.add-questions, .add-city {
  display: flex;
  align-items: center;
  justify-content: end;
}
.add-questions .add-qw, .add-city .add-qw {
  background-color: transparent;
  font-size: 18px;
  text-decoration: underline;
  padding: 0;
  color: #6F105F;
}

.delete-city {
  position: absolute;
  top: 0;
}
html[lang=en] .delete-city {
  right: 0;
}
html[lang=ar] .delete-city {
  left: 0;
}

.edit-card-name {
  flex-direction: column;
  align-items: flex-start !important;
}
.edit-card-name .img-prod {
  margin-bottom: 15px;
}
.edit-card-name .curent-text .top, .edit-card-name .curent-text .bottom {
  font-size: 17px;
}
.edit-card-name .curent-text p:not(:last-child) {
  margin-bottom: 10px;
}
.edit-card-name .curent-text .top {
  color: #000;
}
.edit-card-name .curent-text .bottom {
  color: #6F105F;
}

.main-layout-add-item .main-sec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.main-layout-add-item .main-sec-item .add-day-style {
  color: #6F105F;
  text-decoration: underline;
  padding: 0;
  background: transparent;
}
@media (max-width: 425px) {
  .main-layout-add-item .form-group {
    margin-bottom: 30px !important;
  }
}

.input-time-2 {
  width: 100%;
  height: 100%;
  background: transparent;
}

html[lang=en] .drop-text-time {
  margin-right: 15px;
}
html[lang=ar] .drop-text-time {
  margin-left: 15px;
}

.main-time-input {
  box-shadow: 0 0 0 2px #ededed;
}

.remove-append-row {
  position: absolute;
  top: -25px;
  cursor: pointer;
  z-index: 333333;
}
html[lang=en] .remove-append-row {
  right: 5px;
}
html[lang=ar] .remove-append-row {
  left: 5px;
}

.sighn-img {
  text-align: center;
}
.sighn-img .img {
  height: 420px;
  object-fit: cover;
  max-width: 100%;
}
@media (max-width: 1280px) {
  .sighn-img .img {
    height: 360px;
  }
}
@media (max-width: 425px) {
  .sighn-img .img {
    height: 250px;
  }
}
@media (max-width: 320px) {
  .sighn-img .img {
    height: 220px;
  }
}

.main-custom-btn {
  padding: 10px 15px;
  border-radius: 6px;
  color: #fff;
  background-color: #6F105F;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
@media (max-width: 425px) {
  .main-custom-btn {
    font-size: 20px;
  }
}
.main-custom-btn:hover {
  color: #fff;
}
.main-custom-btn.with-done-img .img-done {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}
html[lang=en] .main-custom-btn.with-done-img .img-done {
  margin-right: 12px;
}
html[lang=ar] .main-custom-btn.with-done-img .img-done {
  margin-left: 12px;
}

.subscriptions-box {
  margin-bottom: 15px;
}
.subscriptions-box .box {
  padding: 25px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .subscriptions-box .box {
    margin-bottom: 15px;
  }
}
.subscriptions-box .box .main-hint-info {
  flex-wrap: wrap;
}
@media (max-width: 425px) {
  .subscriptions-box .box .main-hint-info {
    flex-direction: column;
  }
}
.subscriptions-box .box .hint-info {
  margin-bottom: 10px;
  font-size: 20px;
  color: #000;
}
.subscriptions-box .box .hint-info:not(:last-child) {
  color: #184a1f;
}
html[lang=en] .subscriptions-box .box .hint-info:not(:last-child) {
  margin-right: 25px;
}
html[lang=ar] .subscriptions-box .box .hint-info:not(:last-child) {
  margin-left: 25px;
}
@media (max-width: 425px) {
  html[lang=en] .subscriptions-box .box .hint-info:not(:last-child) {
    margin-right: 0;
  }
  html[lang=ar] .subscriptions-box .box .hint-info:not(:last-child) {
    margin-left: 0;
  }
}
.subscriptions-box .sub-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.subscriptions-box .sub-info .right,
.subscriptions-box .sub-info .left {
  font-size: 18px;
  color: #262626;
}
.subscriptions-box .sub-info .left {
  color: #6F105F;
}
.subscriptions-box .center-text {
  color: #184a1f;
}
.subscriptions-box .disc {
  font-size: 16px;
  color: #262626;
  line-height: 30px;
}
.subscriptions-box .main-custom-btn {
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}
.subscriptions-box:hover .main-custom-btn {
  visibility: visible;
  opacity: 1;
  overflow: visible;
}

.center-text {
  font-size: 19px;
  margin-bottom: 15px;
  text-align: center;
}

.sidebar-menu {
  width: 370px;
  position: fixed;
  top: 0;
  height: 100%;
  transition: all 0.8s cubic-bezier(0.5, -0.7, 0.15, 1.55);
  z-index: 9;
  background-color: #f6f4f8;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 2px #baa3a3;
  background: #fff;
}
html[lang=en] .sidebar-menu {
  left: 0;
}
html[lang=ar] .sidebar-menu {
  right: 0;
}
.sidebar-menu .sidebar-logo {
  background-color: #6F105F;
  text-align: center;
  padding: 25px;
  margin-bottom: 20px;
}
.sidebar-menu .sidebar-logo .img-logo {
  height: 100px;
  object-fit: cover;
}
.sidebar-menu .sidebar-logo .close-ic {
  display: none;
  position: absolute;
  top: 15px;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
html[lang=en] .sidebar-menu .sidebar-logo .close-ic {
  right: 5px;
}
html[lang=ar] .sidebar-menu .sidebar-logo .close-ic {
  left: 5px;
}
@media (max-width: 1024px) {
  .sidebar-menu .sidebar-logo .close-ic {
    display: block;
  }
}
.sidebar-menu .sidebar-anchors {
  flex-grow: 1;
  overflow-y: auto;
  transition: all 0.8s cubic-bezier(0.5, -0.7, 0.15, 1.55);
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.sidebar-menu .sidebar-anchors::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  transition: 0.3s;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .sidebar-menu .sidebar-anchors::-webkit-scrollbar {
    height: 1px;
  }
}
.sidebar-menu .sidebar-anchors::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.sidebar-menu .sidebar-anchors::-webkit-scrollbar-thumb {
  background: linear-gradient(rgba(24, 74, 31, 0.3), #6f105f);
  border-radius: 3px;
}
.sidebar-menu .sidebar-anchors::-webkit-scrollbar-thumb:hover {
  background: #555;
}
html[lang=en] .sidebar-menu .sidebar-anchors {
  padding: 0 15px 15px 25px;
}
html[lang=ar] .sidebar-menu .sidebar-anchors {
  padding: 0 25px 15px 15px;
}
.sidebar-menu .sidebar-anchors .profile {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.sidebar-menu .sidebar-anchors .profile img {
  width: 95px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}
html[lang=en] .sidebar-menu .sidebar-anchors .profile img {
  margin-right: 15px;
}
html[lang=ar] .sidebar-menu .sidebar-anchors .profile img {
  margin-left: 15px;
}
.sidebar-menu .sidebar-anchors .profile .hint {
  color: #535455;
  font-size: 16px;
  margin-bottom: 12px;
}
.sidebar-menu .sidebar-anchors .item {
  position: relative;
  padding: 10px;
  border-radius: 5px;
  transition: 0.5s all ease-in-out;
  overflow: hidden;
}
.sidebar-menu .sidebar-anchors .item .box-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.sidebar-menu .sidebar-anchors .item .box-item .img-1,
.sidebar-menu .sidebar-anchors .item .box-item .img-2 {
  width: 20px;
  height: 18px;
  object-fit: contain;
  transition: 0.5s;
}
html[lang=en] .sidebar-menu .sidebar-anchors .item .box-item .img-1,
html[lang=en] .sidebar-menu .sidebar-anchors .item .box-item .img-2 {
  margin-right: 13px;
}
html[lang=ar] .sidebar-menu .sidebar-anchors .item .box-item .img-1,
html[lang=ar] .sidebar-menu .sidebar-anchors .item .box-item .img-2 {
  margin-left: 13px;
}
.sidebar-menu .sidebar-anchors .item i {
  font-size: 20px;
  color: #858585;
  transition: 0.5s;
  position: absolute;
  top: 0;
  transform: translateY(50%);
}
html[lang=en] .sidebar-menu .sidebar-anchors .item i {
  right: 10px;
}
html[lang=ar] .sidebar-menu .sidebar-anchors .item i {
  left: 10px;
}
.sidebar-menu .sidebar-anchors .item:not(:last-child) {
  margin-bottom: 20px;
}
.sidebar-menu .sidebar-anchors .item .hint {
  font-size: 15px;
  color: #858585;
  transition: 0.5s;
  width: 100%;
}
.sidebar-menu .sidebar-anchors .item::before {
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(92, 145, 74, 0.13);
  opacity: 0.5;
  position: absolute;
  transition: 0.5s;
}
html[lang=en] .sidebar-menu .sidebar-anchors .item::before {
  right: 0;
}
html[lang=ar] .sidebar-menu .sidebar-anchors .item::before {
  left: 0;
}
html[lang=en] .sidebar-menu .sidebar-anchors .item::before {
  transform: translateX(-100%);
}
html[lang=ar] .sidebar-menu .sidebar-anchors .item::before {
  transform: translateX(100%);
}
.sidebar-menu .sidebar-anchors .item:hover .hint, .sidebar-menu .sidebar-anchors .item.active .hint {
  color: #6F105F;
}
html[lang=en] .sidebar-menu .sidebar-anchors .item:hover .hint, html[lang=en] .sidebar-menu .sidebar-anchors .item.active .hint {
  transform: translateX(15px);
}
html[lang=ar] .sidebar-menu .sidebar-anchors .item:hover .hint, html[lang=ar] .sidebar-menu .sidebar-anchors .item.active .hint {
  transform: translateX(-15px);
}
.sidebar-menu .sidebar-anchors .item:hover i, .sidebar-menu .sidebar-anchors .item.active i {
  color: #6F105F !important;
}
.sidebar-menu .sidebar-anchors .item:hover::before, .sidebar-menu .sidebar-anchors .item.active::before {
  transform: none !important;
}
.sidebar-menu .sidebar-anchors .item:hover .img-1, .sidebar-menu .sidebar-anchors .item.active .img-1 {
  filter: sepia(11) hue-rotate(215deg) saturate(500%);
}
.sidebar-menu .sidebar-anchors .without-anchor {
  cursor: pointer;
}
.sidebar-menu .sidebar-anchors .without-anchor .sub-list-menu {
  padding: 15px 20px;
  transition: 0.3s;
}
.sidebar-menu .sidebar-anchors .without-anchor .sub-list-menu .list-anchor {
  color: #858585;
  font-size: 14px;
  display: block;
}
.sidebar-menu .sidebar-anchors .without-anchor .sub-list-menu .list-anchor.active {
  color: #670acb;
}
.sidebar-menu .sidebar-anchors .without-anchor .sub-list-menu .list-anchor:not(:last-child) {
  margin-bottom: 5px;
}
.sidebar-menu .sidebar-anchors .without-anchor .sub-list-menu .list-anchor:hover {
  color: #670acb;
}
html[lang=en] .sidebar-menu .sidebar-anchors .without-anchor .sub-list-menu .list-anchor:hover {
  transform: translateX(15px);
}
html[lang=ar] .sidebar-menu .sidebar-anchors .without-anchor .sub-list-menu .list-anchor:hover {
  transform: translateX(-15px);
}
.sidebar-menu .sidebar-anchors .without-anchor .sub-list-menu .sub-item {
  transition: 0.5s;
}
.sidebar-menu .sidebar-anchors .without-anchor .sub-list-menu .sub-item:not(:last-child) {
  margin-bottom: 7px;
}
@media (max-width: 425px) {
  .sidebar-menu .sidebar-anchors {
    padding: 0 15px !important;
  }
}
html[lang=en] .sidebar-menu.move {
  transform: translateX(-100%);
}
html[lang=ar] .sidebar-menu.move {
  transform: translateX(100%);
}
@media (max-width: 1024px) {
  html[lang=en] .sidebar-menu.move {
    transform: none;
  }
  html[lang=ar] .sidebar-menu.move {
    transform: none;
  }
}
@media (max-width: 1024px) {
  html[lang=en] .sidebar-menu {
    transform: translate(-100%);
  }
  html[lang=ar] .sidebar-menu {
    transform: translate(100%);
  }
}
@media (max-width: 425px) {
  .sidebar-menu {
    width: 250px;
  }
}

html[lang=en] .star-icon.with-mr-r {
  margin-left: 10px;
}
html[lang=ar] .star-icon.with-mr-r {
  margin-right: 10px;
}
.star-icon i {
  font-size: 14px;
  color: #d0d5d9;
}
.star-icon i.active {
  color: #fcb91d;
}

.pric-prod {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pric-prod .disc,
.pric-prod .real {
  font-size: 15px;
}
.pric-prod .real {
  color: #6F105F;
}
.pric-prod .disc {
  text-decoration: line-through;
  color: #737373;
}
html[lang=en] .pric-prod .disc {
  margin-right: 5px;
}
html[lang=ar] .pric-prod .disc {
  margin-left: 5px;
}

.anchor-order {
  font-size: 20px;
  color: #737373;
  background-color: transparent;
  padding: 0;
}
.anchor-order:hover {
  color: #737373;
}

.with-mrg {
  transition: 0.5s all ease-in-out;
}
html[lang=en] .with-mrg {
  margin-left: 370px;
}
html[lang=ar] .with-mrg {
  margin-right: 370px;
}
html[lang=en] .with-mrg.move {
  margin-left: 0px;
}
html[lang=ar] .with-mrg.move {
  margin-right: 0px;
}
@media (max-width: 1024px) {
  html[lang=en] .with-mrg {
    margin-left: 0px;
  }
  html[lang=ar] .with-mrg {
    margin-right: 0px;
  }
}

.top-nav {
  background: #fff;
  box-shadow: -10px 3px 13px rgba(0, 0, 0, 0.16);
  transition: 0.5s all ease-in-out;
}
.top-nav .inner {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-nav .inner .navbar-btn {
  background-color: transparent;
}
.top-nav .inner .left {
  display: flex;
  align-items: center;
}
.top-nav .inner .left .notif-icon {
  position: relative;
}
html[lang=en] .top-nav .inner .left .notif-icon {
  margin-right: 25px;
}
html[lang=ar] .top-nav .inner .left .notif-icon {
  margin-left: 25px;
}
.top-nav .inner .left .notif-icon::before {
  content: attr(data-number);
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #eb3232;
  font-size: 12px;
  color: #fff;
  top: -3px;
  font-size: 9px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
html[lang=en] .top-nav .inner .left .notif-icon::before {
  right: -3px;
}
html[lang=ar] .top-nav .inner .left .notif-icon::before {
  left: -3px;
}
.top-nav .inner .left .notif-icon i {
  font-size: 25px;
  color: #8a8f94;
}
.top-nav .inner .left .anchor-profile {
  display: block;
  position: relative;
}
.top-nav .inner .left .anchor-profile::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #65b717;
  border-radius: 50%;
  top: 65%;
}
.top-nav .inner .left .anchor-profile .img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.table-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  position: relative;
  border-radius: 8px;
  color: #666666;
  padding: 5px 10px;
  flex-shrink: 0;
  order: 3;
  border: 1px solid #d3d3d3;
}
.table-select .hint-select-2 {
  padding: 8px 15px;
  background: #6F105F;
  font-size: 15px;
  border-radius: 8px;
  flex-shrink: 0;
  color: #fff;
}
.table-select .hint-select-2 img {
  width: 20px;
  object-fit: cover;
}
html[lang=en] .table-select .hint-select-2 img {
  margin-right: 15px;
}
html[lang=ar] .table-select .hint-select-2 img {
  margin-left: 15px;
}
@media (max-width: 425px) {
  html[lang=en] .table-select .hint-select-2 img {
    margin-right: 0;
  }
  html[lang=ar] .table-select .hint-select-2 img {
    margin-left: 0;
  }
}
.table-select .select-plugin ~ .select2 {
  width: 100% !important;
  border-radius: 5px;
}
.table-select .select-plugin ~ .select2 .select2-selection--single {
  height: 40px;
  padding: 10px;
  background-color: transparent;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
}
.table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection__rendered {
  color: #666666;
  font-size: 14px;
}
@media (max-width: 375px) {
  html[lang=en] .table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection--single .select2-selection__rendered {
    padding-left: 3px;
  }
  html[lang=ar] .table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection--single .select2-selection__rendered {
    padding-right: 3px;
  }
}
.table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-35%);
  height: auto;
  border: 0;
}
html[lang=en] .table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection__arrow {
  right: 5px;
}
html[lang=ar] .table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection__arrow {
  left: 5px;
}
@media (max-width: 425px) {
  html[lang=en] .table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection__arrow {
    right: 5px;
  }
  html[lang=ar] .table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection__arrow {
    left: 5px;
  }
}
.table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection__arrow::after {
  content: "\f107";
  display: block;
  font-size: 15px;
  color: #707070;
  font-weight: 900;
}
.table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection__arrow b {
  display: none;
}
html[lang=en] .table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection__arrow {
  right: 0;
}
html[lang=ar] .table-select .select-plugin ~ .select2 .select2-selection--single .select2-selection__arrow {
  left: 0;
}

.name-prod {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
}
.name-prod .img-prod {
  display: flex;
  align-items: center;
}
.name-prod .img-prod .rate-sec {
  display: flex;
  flex-direction: column;
}
.name-prod .img-prod .rate-sec .rateYo {
  margin-bottom: 10px;
  padding: 0;
}
.name-prod .img-prod .img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}
html[lang=en] .name-prod .img-prod .img {
  margin-right: 10px;
}
html[lang=ar] .name-prod .img-prod .img {
  margin-left: 10px;
}
.name-prod .img-prod .hint {
  font-size: 15px;
  margin-bottom: 5px;
  color: #000;
}
.name-prod .img-prod .disc {
  font-size: 14px;
  color: #737373;
}
.name-prod .icon {
  display: flex;
  flex-direction: column;
}
html[lang=en] .name-prod .icon {
  margin-right: 15px;
}
html[lang=ar] .name-prod .icon {
  margin-left: 15px;
}
.name-prod .icon .anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 24px;
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
}
.name-prod .icon .anchor:not(:last-child) {
  margin-bottom: 7px;
}
.name-prod .icon .anchor:first-child {
  background-color: #6F105F;
}
.name-prod .icon .anchor:last-child {
  background-color: #eb2222;
}

.prod-quantity {
  padding: 5px 15px;
  font-size: 20px;
  border-radius: 4px;
  background-color: #f5f5f5;
  max-width: 65px;
  margin: 0 auto;
  color: #6F105F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-quantity.without-mg {
  margin: inherit;
}

.invoice-sec .main-title {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d3d3d3;
}
.invoice-sec .invoice-img {
  height: 152px;
  object-fit: cover;
}

.order-imgs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.order-imgs .img-prod {
  min-width: 160px;
  height: 85px;
  margin-bottom: 15px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .order-imgs .img-prod {
    min-width: 130px;
    height: 70px;
  }
}
@media (max-width: 425px) {
  .order-imgs .img-prod {
    min-width: 100px;
    height: 55px;
  }
}
html[lang=en] .order-imgs .img-prod:not(:last-child) {
  margin-right: 15px;
}
html[lang=ar] .order-imgs .img-prod:not(:last-child) {
  margin-left: 15px;
}

.prod-sec-edit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prod-sec-edit .info-order {
  display: flex;
  align-items: center;
}
.prod-sec-edit .info-order .status-order {
  margin-bottom: 0 !important;
}
.prod-sec-edit .info-order .img {
  width: 60px;
  height: 35px;
  border-radius: 2px;
}
html[lang=en] .prod-sec-edit .info-order .img {
  margin-right: 12px;
}
html[lang=ar] .prod-sec-edit .info-order .img {
  margin-left: 12px;
}

.prop-text {
  font-size: 16px;
  color: #353333;
}

.complete-table-price {
  padding: 25px;
  background-color: #f2f2f2;
  border-radius: 8px;
  color: #353333;
  font-size: 24px;
}
@media (max-width: 425px) {
  .complete-table-price {
    padding: 15px;
    font-size: 20px;
  }
}

.item-processes {
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 0px 2px #6F105F;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  position: relative;
}
@media (max-width: 425px) {
  .item-processes {
    flex-direction: column;
  }
}
.item-processes .right .hint-order {
  font-size: 20px;
  color: #353333;
  word-break: break-all;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .item-processes .right .hint-order {
    font-size: 20px;
  }
}
.item-processes .right .status-order {
  font-size: 18px;
  color: #353333;
  line-height: 32px;
}
@media (max-width: 425px) {
  .item-processes .right .status-order {
    line-height: normal;
  }
}
.item-processes .right .status-order:not(:last-child) {
  margin-bottom: 6px;
}
@media (max-width: 1280px) {
  .item-processes .right .status-order {
    margin-bottom: 15px;
  }
}
@media (max-width: 425px) {
  .item-processes .right .status-order {
    font-size: 14px;
  }
}
.item-processes .right .status-order.with-prod-img {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.item-processes .right .status-order.with-prod-img .img {
  width: 60px;
  height: 50px;
  border-radius: 6px;
}
html[lang=en] .item-processes .right .status-order.with-prod-img .img {
  margin-left: 15px;
}
html[lang=ar] .item-processes .right .status-order.with-prod-img .img {
  margin-right: 15px;
}
html[lang=en] .item-processes .right .status-order .left-text {
  margin-left: 10px;
}
html[lang=ar] .item-processes .right .status-order .left-text {
  margin-right: 10px;
}
.item-processes .left {
  text-align: center;
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  flex-wrap: wrap;
}
html[lang=en] .item-processes .left {
  right: 20px;
}
html[lang=ar] .item-processes .left {
  left: 20px;
}
@media (max-width: 425px) {
  .item-processes .left {
    position: static;
    justify-content: start;
    flex-direction: column;
    align-items: start;
  }
}
.item-processes .left .hint-proc {
  font-size: 17px;
  margin-bottom: 35px;
  display: block;
}
@media (max-width: 768px) {
  .item-processes .left .hint-proc {
    font-size: 16px;
  }
}
.item-processes .left .main-custom-btn {
  height: 40px;
  font-size: 17px;
}
.item-processes .left .main-custom-btn .img-bill {
  height: 20px;
}
html[lang=en] .item-processes .left .main-custom-btn .img-bill {
  margin-right: 10px;
}
html[lang=ar] .item-processes .left .main-custom-btn .img-bill {
  margin-left: 10px;
}
html[lang=en] .item-processes .left .main-custom-btn:not(:last-child) {
  margin-left: 10px;
}
html[lang=ar] .item-processes .left .main-custom-btn:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 430px) {
  .item-processes .left .main-custom-btn:not(:last-child) {
    margin-bottom: 7px;
  }
  html[lang=en] .item-processes .left .main-custom-btn:not(:last-child) {
    margin-left: 0;
  }
  html[lang=ar] .item-processes .left .main-custom-btn:not(:last-child) {
    margin-right: 0;
  }
}
@media (max-width: 320px) {
  .item-processes .left .main-custom-btn {
    height: 35px;
    font-size: 14px;
  }
}
.item-processes .left .main-custom-btn.done {
  color: #6F105F;
  background-color: #edf4e7;
}

.ads-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 425px) {
  .ads-img {
    height: 150px;
  }
}

.tb-switch {
  order: 5;
}
html[lang=en] .tb-switch {
  margin-right: 0 !important;
}
html[lang=ar] .tb-switch {
  margin-left: 0 !important;
}
@media (max-width: 425px) {
  .tb-switch {
    margin-bottom: 15px;
  }
}

.without-shadow {
  box-shadow: none !important;
}

.main-sec-info-price {
  display: flex;
  flex-direction: column;
}
.main-sec-info-price .main-title:not(:last-child) {
  margin-bottom: 12px;
}
.main-sec-info-price .main-title:last-child {
  color: #6F105F;
}
@media (max-width: 425px) {
  .main-sec-info-price .main-title {
    font-size: 16px;
  }
}

.main-section-table {
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.main-section-table:not(:last-child) {
  margin-bottom: 30px;
}
.main-section-table .custom-table {
  text-align: center;
  margin-bottom: 0;
  background: #fff;
  width: 100%;
}
.main-section-table .thead-bg-cl {
  color: #fff;
  background-color: #fff;
}
.main-section-table .thead-bg-cl tr {
  background-color: #fff;
}
.main-section-table .thead-bg-cl tr th {
  background-color: #fff;
  color: #262626;
}
.main-section-table .thead-bg-cl th {
  border: 0;
  padding: 20px;
  font-size: 18px;
}
@media (max-width: 425px) {
  .main-section-table .thead-bg-cl th {
    font-size: 16px;
  }
}
.main-section-table .thead-bg-cl td {
  font-size: 15px;
}
.main-section-table tbody td,
.main-section-table tbody th {
  font-size: 17px;
  vertical-align: middle;
  white-space: nowrap;
  padding: 20px;
  border-top: 1px solid #dee2e6;
}
.main-section-table th {
  white-space: nowrap;
}
.main-section-table .product-details-count .m-input {
  flex-wrap: nowrap;
}
.main-section-table .center-text {
  margin-bottom: 0;
}

.btn-prod a,
.btn-prod .hint-span {
  display: inline-flex !important;
  width: 80px;
  justify-content: center;
}

.name-prod-table {
  display: flex;
  align-items: center;
  justify-content: center;
}
.name-prod-table .icon {
  display: flex;
  flex-direction: column;
}
html[lang=en] .name-prod-table .icon {
  margin-right: 15px;
}
html[lang=ar] .name-prod-table .icon {
  margin-left: 15px;
}
.name-prod-table .icon .anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 24px;
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
}
.name-prod-table .icon .anchor:not(:last-child) {
  margin-bottom: 7px;
}
.name-prod-table .icon .anchor:first-child {
  background-color: #6F105F;
}
.name-prod-table .icon .anchor:last-child {
  background-color: #eb2222;
}
.name-prod-table .img-prod {
  display: flex;
  align-items: center;
}
.name-prod-table .img-prod .img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}
html[lang=en] .name-prod-table .img-prod .img {
  margin-right: 10px;
}
html[lang=ar] .name-prod-table .img-prod .img {
  margin-left: 10px;
}

.card-foot.chang-ps {
  flex-wrap: wrap;
  align-items: start;
}
@media (max-width: 320px) {
  .card-foot.chang-ps {
    align-items: center;
  }
  .card-foot.chang-ps a,
.card-foot.chang-ps button,
.card-foot.chang-ps .left-link {
    margin-bottom: 12px;
  }
  html[lang=en] .card-foot.chang-ps a,
html[lang=en] .card-foot.chang-ps button,
html[lang=en] .card-foot.chang-ps .left-link {
    margin-right: 5px !important;
  }
  html[lang=ar] .card-foot.chang-ps a,
html[lang=ar] .card-foot.chang-ps button,
html[lang=ar] .card-foot.chang-ps .left-link {
    margin-left: 5px !important;
  }
}
.card-foot.chang-ps .with-custom-pd {
  font-size: 18px !important;
}
.card-foot a,
.card-foot button,
.card-foot .hint-span {
  padding: 5px 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 4px;
}
html[lang=en] .card-foot a:not(:last-child),
html[lang=en] .card-foot button:not(:last-child),
html[lang=en] .card-foot .hint-span:not(:last-child) {
  margin-right: 10px;
}
html[lang=ar] .card-foot a:not(:last-child),
html[lang=ar] .card-foot button:not(:last-child),
html[lang=ar] .card-foot .hint-span:not(:last-child) {
  margin-left: 10px;
}
.card-foot .right-link {
  background-color: #353333;
}
.card-foot .left-link {
  background-color: #6F105F;
}

.loader {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 9999999999;
  font-family: "Roboto";
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader img {
  position: relative;
  max-width: 120px;
  object-fit: cover;
  animation: logoeffect2 3s linear 0s infinite;
}

@keyframes logoeffect2 {
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media (max-width: 425px) {
  .prod-btns {
    flex-wrap: wrap;
  }
}
.prod-btns .prod-btn {
  min-width: 210px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  background: transparent;
  padding: 10px 15px;
}
html[lang=en] .prod-btns .prod-btn:not(:last-child) {
  margin-right: 25px;
}
html[lang=ar] .prod-btns .prod-btn:not(:last-child) {
  margin-left: 25px;
}
@media (max-width: 425px) {
  .prod-btns .prod-btn {
    height: 45px;
    font-size: 17px;
    margin: 0 auto 15px !important;
  }
  html[lang=en] .prod-btns .prod-btn {
    margin-right: 0;
  }
  html[lang=ar] .prod-btns .prod-btn {
    margin-left: 0;
  }
}
.prod-btns .prod-btn:last-child {
  margin-bottom: 0 !important;
}
.prod-btns .prod-btn.delete-btn {
  background-color: #f12727;
}
.prod-btns .prod-btn.available-btn {
  background-color: #6F105F;
}
.prod-btns .prod-btn.cancel-btn {
  background-color: #737373;
}
.prod-btns .prod-btn.edit-btn {
  background-color: #F6EEF8;
  color: #6F105F;
}

.done-gif {
  height: 100px;
  width: 100px;
  object-fit: cover;
  margin-top: 15px;
  margin-bottom: 20px;
}

.product-details {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .product-details {
    padding-bottom: 25px;
  }
}
.product-details .main-slider {
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  .product-details .main-slider {
    margin-bottom: 30px;
  }
}
@media (max-width: 425px) {
  .product-details .main-slider {
    flex-direction: column-reverse;
  }
}
.product-details .main-slider .product-icon {
  position: absolute;
  top: 35px;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}
html[lang=en] .product-details .main-slider .product-icon {
  right: 40px;
}
html[lang=ar] .product-details .main-slider .product-icon {
  left: 40px;
}
@media (max-width: 425px) {
  .product-details .main-slider .product-icon {
    top: 10px;
  }
}
.product-details .main-slider .product-icon i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 24px;
  border-radius: 50%;
  color: #666666;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .product-details .main-slider .product-icon i {
    width: 45px;
    height: 45px;
    font-size: 21px;
  }
}
@media (max-width: 425px) {
  .product-details .main-slider .product-icon i {
    width: 33px;
    height: 33px;
    font-size: 17px;
  }
}
.product-details .main-slider .product-icon i:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 425px) {
  .product-details .main-slider .product-icon i:not(:last-child) {
    margin-bottom: 10px;
  }
}
.product-details .main-slider .preview-images {
  max-height: 785px;
  overflow: auto;
}
@media (max-width: 1280px) {
  .product-details .main-slider .preview-images {
    max-height: 500px;
  }
}
@media (max-width: 768px) {
  .product-details .main-slider .preview-images {
    height: 490px;
  }
}
@media (max-width: 425px) {
  .product-details .main-slider .preview-images {
    height: auto;
    display: flex;
  }
}
.product-details .main-slider .preview-images img {
  width: 100%;
  height: 150px;
  border-radius: 4px;
  object-fit: cover;
  opacity: 50%;
  cursor: pointer;
  transition: all 0.5s;
}
@media (max-width: 1024px) {
  .product-details .main-slider .preview-images img {
    height: 80px;
  }
}
@media (max-width: 768px) {
  .product-details .main-slider .preview-images img {
    height: 100px;
  }
}
@media (max-width: 425px) {
  .product-details .main-slider .preview-images img {
    min-width: 106px;
    height: 90px;
  }
}
.product-details .main-slider .preview-images img.active {
  opacity: 1;
}
.product-details .main-slider .preview-images .success-img:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .product-details .main-slider .preview-images .success-img:not(:last-child) {
    margin-bottom: 0;
  }
  html[lang=en] .product-details .main-slider .preview-images .success-img:not(:last-child) {
    margin-right: 10px;
  }
  html[lang=ar] .product-details .main-slider .preview-images .success-img:not(:last-child) {
    margin-left: 10px;
  }
}
.product-details .main-slider .preview-images .success-img.active img {
  opacity: 1;
}
.product-details .main-slider .preview-images .success-img.active .overlay {
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
.product-details .main-slider .preview-images::-webkit-scrollbar, .product-details .main-slider .preview-images::-webkit-scrollbar-track, .product-details .main-slider .preview-images::-webkit-scrollbar-thumb {
  display: none;
}
@media (max-width: 1280px) {
  .product-details .main-slider .preview-images-details {
    justify-content: center;
  }
}
.product-details .main-slider .item img {
  width: 100%;
  height: 735px;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .product-details .main-slider .item img {
    height: 450px;
  }
}
@media (max-width: 425px) {
  .product-details .main-slider .item img {
    height: 250px;
  }
}
@media (max-width: 375px) {
  .product-details .main-slider .item img {
    height: 200px;
  }
}

.box-info .product-info .hint-info {
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.box-info .product-info .hint-info .hint {
  font-size: 21px;
  color: #353333;
  flex-shrink: 0;
}
html[lang=en] .box-info .product-info .hint-info .hint {
  margin-right: 15px;
}
html[lang=ar] .box-info .product-info .hint-info .hint {
  margin-left: 15px;
}
@media (max-width: 1600px) {
  .box-info .product-info .hint-info .hint {
    margin-bottom: 15px;
  }
}
.box-info .product-info .hint-info .hint .sec {
  color: #6F105F;
}
.box-info .product-info .title {
  font-size: 24px;
  color: #184a1f;
  display: block;
  text-decoration: underline !important;
}
.box-info .product-info .title-update {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box-info .product-info .product-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.box-info .product-info .product-name .pdf-img {
  width: 28px;
  height: 36px;
  object-fit: cover;
}
html[lang=en] .box-info .product-info .product-name .pdf-img {
  margin-right: 8px;
}
html[lang=ar] .box-info .product-info .product-name .pdf-img {
  margin-left: 8px;
}
.box-info .product-info .product-name .name-title {
  font-size: 20px;
  font-weight: 400;
  color: #191919;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .box-info .product-info .product-name .name-title {
    font-size: 18px;
  }
}
.box-info .product-info .product-name .icon {
  display: flex;
  align-items: center;
}
.box-info .product-info .product-name .icon i {
  font-size: 16px;
  color: #d0d5d9;
}
.box-info .product-info .product-name .icon i:last-child {
  color: #fcb91d;
}
.box-info .product-info .product-name .icon i.active {
  color: #fcb91d;
}
@media (max-width: 1024px) {
  .box-info .product-info .product-name .icon i {
    font-size: 13px;
  }
}
html[lang=en] .box-info .product-info .product-name .icon i:not(:last-child) {
  margin-right: 3px;
}
html[lang=ar] .box-info .product-info .product-name .icon i:not(:last-child) {
  margin-left: 3px;
}
@media (max-width: 1440px) {
  .box-info .product-info .product-name .hint-icon-details {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .box-info .product-info .product-name .hint-icon-details {
    margin-top: 0;
  }
}
@media (max-width: 375px) {
  .box-info .product-info .product-name .hint-icon-details {
    margin-top: 15px;
  }
}
.box-info .product-info .product-name .hint {
  font-size: 20px;
  color: #721f89;
}
@media (max-width: 1024px) {
  .box-info .product-info .product-name .hint {
    font-size: 18px;
  }
}
.box-info .product-info .hint-offer-details {
  flex-wrap: wrap;
}
.box-info .product-info .hint-offer-details .name-title {
  font-size: 17px;
}
.box-info .product-info .hint-offer-details .category-hint-num {
  font-size: 12px;
}
.box-info .product-info .hint-offer-details .hint {
  font-size: 17px;
}
@media (max-width: 1024px) {
  .box-info .product-info .hint-offer-details .hint {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .box-info .product-info .hint-offer-details .hint {
    margin-top: 0;
  }
}
@media (max-width: 320px) {
  .box-info .product-info .hint-offer-details .hint {
    margin-top: 15px;
  }
}
html[lang=en] .box-info .product-info .hint-offer-details .icon {
  margin-left: 0px;
}
html[lang=ar] .box-info .product-info .hint-offer-details .icon {
  margin-right: 0px;
}
.box-info .product-info .hint-disc-details {
  margin-bottom: 13px;
}
.box-info .product-info .main-desc {
  justify-content: space-between;
  flex-wrap: wrap;
}
.box-info .product-info .disc {
  font-size: 19px;
  color: #353333;
  margin-bottom: 20px;
}
.box-info .product-info .disc .hint {
  color: #737373;
}
.box-info .product-info .btns {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.box-info .product-info .btns .hint,
.box-info .product-info .btns .btn-center {
  padding: 3px 15px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #721f89;
  color: #721f89;
  font-size: 13px;
}
html[lang=en] .box-info .product-info .btns .hint,
html[lang=en] .box-info .product-info .btns .btn-center {
  margin-right: 20px;
}
html[lang=ar] .box-info .product-info .btns .hint,
html[lang=ar] .box-info .product-info .btns .btn-center {
  margin-left: 20px;
}
.box-info .product-info .btns .btn-center {
  background: linear-gradient(#e987b6, #721f89);
  color: #fff;
  border-color: inherit;
  padding: 5px 15px;
}
.box-info .product-info .btns .chat-btn {
  padding: 7px 15px;
  background-color: #c1def8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 16px;
}
.box-info .product-info .top-disc {
  font-size: 20px;
  color: #191919;
  margin-bottom: 15px;
}
.box-info .product-info .top-disc .disc-img {
  width: 55px;
  height: 35px;
  object-fit: cover;
}
html[lang=en] .box-info .product-info .top-disc .disc-img {
  margin-right: 5px;
}
html[lang=ar] .box-info .product-info .top-disc .disc-img {
  margin-left: 5px;
}
.box-info .product-info .main-hint-disc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.box-info .product-info .main-hint-disc .right {
  font-size: 17px;
  color: #666666;
}
@media (max-width: 1024px) {
  .box-info .product-info .main-hint-disc .right {
    font-size: 15px;
  }
}
.box-info .product-info .main-hint-disc .right .right-hint {
  color: #721f89;
}
.box-info .product-info .main-hint-disc .left .left-hint {
  color: #0959d4;
}
.box-info .product-info .main-hint-disc .last-hint .left-hint {
  color: #ea2020;
}
.box-info .product-info .main-disc-details {
  flex-wrap: wrap;
}
.box-info .product-info .main-disc-details .right {
  font-size: 15px;
}
.box-info .form-info .label {
  margin-bottom: 25px;
  color: #353333;
}
.box-info .form-info .sel-2-input .select ~ .select2 .select2-selection--single {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}
.box-info .form-info .sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__arrow::after {
  content: "\f078";
  font-size: 16px;
}
.box-info .form-info .sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__arrow {
  transform: translateY(-35%);
}
.box-info .form-info .sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__rendered {
  font-size: 18px;
  color: #191919;
}
.box-info .form-info .disc-form {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
}
.box-info .form-info .input-area {
  position: relative;
}
.box-info .form-info .input-area textarea {
  width: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  height: 55px;
  margin-bottom: 50px;
}
.box-info .form-info .input-area .hint {
  position: absolute;
  top: 110%;
  font-size: 16px;
  color: #666666;
}
html[lang=en] .box-info .form-info .input-area .hint {
  right: 0;
}
html[lang=ar] .box-info .form-info .input-area .hint {
  left: 0;
}
.box-info .form-info .m-input {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
}
.box-info .form-info .input-num {
  font-size: 19px;
  width: 100%;
  text-align: center;
  background: transparent;
}
.box-info .form-info .input-num::placeholder {
  font-size: 19px;
}
.box-info .form-info .add-to-cart {
  width: 100%;
  background: linear-gradient(#e987b6, #721f89);
  padding: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  font-size: 20px;
  margin-bottom: 50px;
  height: 55px;
}

@media (max-width: 425px) {
  .product-details-slid {
    margin-bottom: 20px;
  }
}

.sel-2-input .select ~ .select2 {
  width: 100% !important;
  border-radius: 5px;
  box-shadow: 0 0 0 2px #ededed;
}
.sel-2-input .select ~ .select2 .select2-selection--single {
  height: 45px;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-color: transparent;
  display: flex;
  align-items: center;
}
.sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__rendered {
  color: #666666;
  font-size: 14px;
}
.sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
html[lang=en] .sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__arrow {
  right: 15px;
}
html[lang=ar] .sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__arrow {
  left: 15px;
}
@media (max-width: 425px) {
  html[lang=en] .sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__arrow {
    right: 5px;
  }
  html[lang=ar] .sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__arrow {
    left: 5px;
  }
}
.sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__arrow::after {
  content: "\f078";
  display: block;
  font-size: 13px;
  color: #707070;
  font-weight: 900;
  transition: 0.3s;
}
@media (max-width: 425px) {
  .sel-2-input .select ~ .select2 .select2-selection--single {
    padding: 10px 5px;
  }
}
.sel-2-input .select ~ .select2 .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.sel-2-input .select ~ .select .select2-container--default .select2-selection--multiple {
  height: 55px;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-color: transparent;
  display: flex;
  align-items: center;
}
.sel-2-input.edit-select .select ~ .select2.select2-container--open .select2-selection--single .select2-selection__arrow::after {
  transform: rotate(180deg);
}

.sel-2-input .select ~ .select2-container--default .select2-selection--multiple {
  min-height: 45px;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-color: transparent;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
html[lang=en] .sel-2-input .select ~ .select2-container--default .select2-selection--multiple {
  direction: ltr;
}
html[lang=ar] .sel-2-input .select ~ .select2-container--default .select2-selection--multiple {
  direction: rtl;
}
.sel-2-input .select ~ .select2-container--default .select2-selection--multiple::before {
  content: "\f078";
  display: block;
  font-size: 13px;
  color: #707070;
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
html[lang=en] .sel-2-input .select ~ .select2-container--default .select2-selection--multiple::before {
  right: 15px;
}
html[lang=ar] .sel-2-input .select ~ .select2-container--default .select2-selection--multiple::before {
  left: 15px;
}
@media (max-width: 425px) {
  .sel-2-input .select ~ .select2-container--default .select2-selection--multiple {
    padding: 10px 5px;
  }
}
.sel-2-input .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #6F105F;
  border: 0;
  margin-top: 0;
  color: #fff;
}
@media (max-width: 425px) {
  .sel-2-input .select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-bottom: 3px;
  }
  html[lang=en] .sel-2-input .select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding: 5px 15px 5px 5px;
  }
  html[lang=ar] .sel-2-input .select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding: 5px 5px 5px 15px;
  }
}
.sel-2-input .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
}
.sel-2-input .select2-selection--multiple .select2-selection__choice__display {
  font-size: 15px;
}
.sel-2-input .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  background-color: transparent;
}

.icon-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.icon-info .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px !important;
}
html[lang=en] .icon-info .item .img,
html[lang=en] .icon-info .item .icon {
  margin-right: 10px;
}
html[lang=ar] .icon-info .item .img,
html[lang=ar] .icon-info .item .icon {
  margin-left: 10px;
}
.icon-info .item .icon {
  font-size: 25px;
}
.icon-info .item .img {
  width: 30px;
  height: 23px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .returned-text {
    margin-bottom: 30px;
  }
}
.returned-text .title {
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  color: #666666;
  font-size: 21px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.returned-text .title.red-cl {
  color: #eb2222;
}
@media (max-width: 425px) {
  .returned-text .title {
    margin-bottom: 20px;
    padding: 15px;
    font-size: 18px;
  }
}
.returned-text .disc-text {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
}
html[lang=en] .returned-text .hint-status:last-child {
  margin-left: 40px;
}
html[lang=ar] .returned-text .hint-status:last-child {
  margin-right: 40px;
}
@media (max-width: 425px) {
  html[lang=en] .returned-text .hint-status:last-child {
    margin-left: 15px;
  }
  html[lang=ar] .returned-text .hint-status:last-child {
    margin-right: 15px;
  }
}
.returned-text .hint-status .anchor {
  color: #353333;
  font-size: 20px;
  background: #fff;
  padding: 10px 30px;
  width: auto;
}
@media (max-width: 375px) {
  .returned-text .hint-status .anchor {
    padding: 10px 20px;
    font-size: 18px;
  }
}
.returned-text .hint-status .anchor.active {
  background: #6F105F;
  color: #fff;
}

.title-prop {
  color: #353333;
  margin-bottom: 5px;
  font-size: 19px;
  font-weight: 500;
}

.opinion-customer .item .box {
  display: flex;
  margin-bottom: 10px;
}
.opinion-customer .item .box .img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}
html[lang=en] .opinion-customer .item .box .img {
  margin-right: 15px;
}
html[lang=ar] .opinion-customer .item .box .img {
  margin-left: 15px;
}
.opinion-customer .item .box .text {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.opinion-customer .item .box .text .info {
  display: flex;
  flex-direction: column;
}
.opinion-customer .item .box .text .info .name {
  font-size: 17px;
  color: #000;
  margin-bottom: 5px;
}
.opinion-customer .item .box .text .info .disc {
  font-size: 14px;
  color: #000000c4;
}
.opinion-customer .item .main-disc {
  font-size: 17px;
  color: #000;
}

.date-input {
  position: relative;
}
.date-input .hint-date {
  position: absolute;
  top: 0;
  width: 96%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #6F105F;
  justify-content: space-between;
  pointer-events: none;
}
html[lang=en] .date-input .hint-date {
  left: 50%;
}
html[lang=ar] .date-input .hint-date {
  right: 50%;
}
html[lang=en] .date-input .hint-date {
  transform: translateX(-50%);
}
html[lang=ar] .date-input .hint-date {
  transform: translateX(50%);
}

.input-date {
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.text-area {
  width: 100%;
  min-height: 180px;
  resize: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  background-color: #f5f5f5;
  box-shadow: 0 0 0 2px #ededed;
}
@media (max-width: 425px) {
  .text-area {
    min-height: 130px;
  }
}
.text-area.custom-height {
  min-height: 120px;
}

.rep-comments {
  background-color: transparent;
  padding-top: 15px;
  color: #6F105F;
  font-size: 20px;
  text-decoration: underline;
}

.check-inner {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.check-inner .hint-inner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6F105F;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
html[lang=en] .check-inner .hint-inner {
  margin-right: 18px;
}
html[lang=ar] .check-inner .hint-inner {
  margin-left: 18px;
}
.check-inner .hint-inner .radio-body {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6F105F;
  display: block;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 425px) {
  .check-inner .hint-inner .radio-body {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 425px) {
  .check-inner .hint-inner {
    width: 18px;
    height: 18px;
  }
}
.check-inner .hint-text {
  font-size: 18px;
  font-weight: 500;
  color: #666666;
}

.inner-radio [type=radio]:checked + .check-inner .hint-inner .radio-body {
  opacity: 1;
}
.inner-radio [type=radio]:checked + .check-inner .hint-text {
  color: #000;
}
.inner-radio .disc-radio {
  margin-top: 10px;
  display: block;
  font-size: 16px;
  color: #737373;
}
html[lang=en] .inner-radio .disc-radio {
  margin-left: 36px;
}
html[lang=ar] .inner-radio .disc-radio {
  margin-right: 36px;
}

.radio-group {
  display: flex;
  align-items: center;
}
html[lang=en] .radio-group .inner-radio:not(:last-child) {
  margin-right: 20px;
}
html[lang=ar] .radio-group .inner-radio:not(:last-child) {
  margin-left: 20px;
}

.preview-section-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .preview-section-img {
    padding-top: 45px;
  }
}
.preview-section-img .main-lable-append {
  cursor: pointer;
}
@media (max-width: 425px) {
  .preview-section-img .main-lable-append {
    margin-bottom: 20px !important;
  }
}
.preview-section-img .profile-img-upload {
  flex-wrap: wrap;
}
.preview-section-img .profile-img-upload .base-img {
  width: 130px;
  height: 100px;
  border-radius: 5px;
}
.preview-section-img .profile-img-upload .upload-previews {
  position: absolute;
  top: 0;
  width: 130px;
  height: 100px;
}
.preview-section-img .profile-img-upload .upload-previews img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.preview-section-img .profile-img-upload .upload-previews a {
  width: 100%;
  height: 100%;
  cursor: move;
  position: absolute;
}
.preview-section-img .profile-img-upload .upload-previews .remove-appendedd {
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 14px;
  top: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #670acb;
  border-radius: 50%;
  font-style: normal;
  cursor: pointer;
  z-index: 2222;
}
html[lang=en] .preview-section-img .profile-img-upload .upload-previews .remove-appendedd {
  left: -5px;
}
html[lang=ar] .preview-section-img .profile-img-upload .upload-previews .remove-appendedd {
  right: -5px;
}
.preview-section-img .img-preview {
  flex-wrap: wrap;
}
.preview-section-img .inner {
  width: 320px;
  height: 150px;
  border-radius: 5px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (max-width: 425px) {
  .preview-section-img .inner {
    width: 250px;
    height: 100px;
  }
}
.preview-section-img .inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.39);
  top: 0;
}
html[lang=en] .preview-section-img .inner::before {
  right: 0;
}
html[lang=ar] .preview-section-img .inner::before {
  left: 0;
}
.preview-section-img .inner .stat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.preview-section-img .inner .base-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23px;
  height: 30px;
}
.preview-section-img .inner .uploader-img-active {
  width: 100%;
  height: 100%;
  position: absolute;
}
.preview-section-img .hidden-input {
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
.preview-section-img .uploaded {
  position: relative;
  margin: 0 15px 5px;
}
@media (max-width: 425px) {
  .preview-section-img .uploaded {
    margin: 0 5px 10px;
  }
}
.preview-section-img .uploaded .remove-appendedd {
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 14px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #670acb;
  border-radius: 50%;
  font-style: normal;
  cursor: pointer;
  z-index: 2222;
}
html[lang=en] .preview-section-img .uploaded .remove-appendedd {
  left: 0;
}
html[lang=ar] .preview-section-img .uploaded .remove-appendedd {
  right: 0;
}
.preview-section-img .uploaded img {
  width: 100px;
  height: 90px;
  border-radius: 6px;
  object-fit: cover;
}
@media (max-width: 425px) {
  .preview-section-img .uploaded img {
    width: 70px;
    height: 70px;
  }
}
.preview-section-img .uploaded a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 22;
  cursor: move;
}
.preview-section-img .uploaded a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}
html[lang=en] .preview-section-img .uploaded a::before {
  right: 0;
}
html[lang=ar] .preview-section-img .uploaded a::before {
  left: 0;
}
.preview-section-img .prev-icon {
  width: 30px;
  height: 30px;
  background-color: #670acb;
  margin: 0 15px;
  cursor: pointer;
}
.preview-section-img .prev-icon i {
  font-size: 16px;
  color: #fff;
}

.curent-input {
  position: relative;
}
.curent-input.with-g-shadow .main-input {
  box-shadow: 0 0 0 2px #6F105F;
  background-color: #fff;
}
.curent-input .main-input {
  color: #6F105F;
}
.curent-input .hint-price {
  position: absolute;
  top: 0;
  transform: translateY(50%);
  color: #6F105F;
}
html[lang=en] .curent-input .hint-price {
  right: 10px;
}
html[lang=ar] .curent-input .hint-price {
  left: 10px;
}

.with-multi {
  transition: 0.5s;
  position: relative;
}
.with-multi .delete-feature {
  background: transparent;
  font-size: 17px;
  position: absolute;
  top: 5px;
}
html[lang=en] .with-multi .delete-feature {
  right: 10px;
}
html[lang=ar] .with-multi .delete-feature {
  left: 10px;
}

.create-f-group {
  transition: 0.3s;
}
.create-f-group.remove {
  display: none;
}

.create-form-group {
  display: none;
}

.accicon .rotate-icon {
  font-size: 17px;
  transition: 0.3s;
}
.accicon .rotate-icon.show {
  transform: rotate(180deg);
}

.accordion-collapse .head-collpase {
  font-size: 20px;
  color: #353333;
}
.accordion-collapse .card-header {
  padding: 0;
}
.accordion-collapse .card {
  background-color: #fff;
  box-shadow: 0 0 6px #fff;
}
.accordion-collapse .card:not(:last-child) {
  margin-bottom: 30px;
}
.accordion-collapse .card .btn {
  font-size: 20px;
  color: #353333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}
.accordion-collapse .card .btn i {
  font-size: 17px;
  transition: 0.3s;
}
.accordion-collapse .card .btn.collapsed i {
  transform: rotate(180deg);
}
.accordion-collapse .card-header {
  background-color: #fff;
  box-shadow: 0 0 6px #fff;
  border: 0;
  border-radius: 10px;
}

.box-offer {
  display: flex;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 220px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .box-offer {
    height: 250px;
  }
}
@media (max-width: 1024px) {
  .box-offer {
    height: 160px;
  }
}
@media (max-width: 425px) {
  .box-offer {
    height: 150px;
    border-radius: 5px;
  }
}
@media (max-width: 320px) {
  .box-offer {
    height: 120px;
  }
}
.box-offer.side-offer-box {
  height: 478px;
}
@media (max-width: 768px) {
  .box-offer.side-offer-box {
    height: 250px;
  }
}
@media (max-width: 425px) {
  .box-offer.side-offer-box {
    height: 170px;
  }
}
.box-offer::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
html[lang=en] .box-offer::before {
  right: 0;
}
html[lang=ar] .box-offer::before {
  left: 0;
}
.box-offer .main-box {
  position: absolute;
}
.box-offer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-offer .hint-discount {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 425px) {
  .box-offer .hint-discount {
    font-size: 16px;
  }
}

.edit-properaties {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .edit-properaties {
    flex-direction: column;
  }
}
.edit-properaties .info {
  display: flex;
  flex-direction: column;
}
.edit-properaties .info .head-info {
  font-size: 18px;
  margin-bottom: 18px;
}
.edit-properaties .info .head-info .first {
  color: #737373;
}
.edit-properaties .info .head-info .sec {
  color: #353333;
}
.edit-properaties .info .info-img {
  height: 112px;
  width: 115px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 25px;
}
.edit-properaties .info .size {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.edit-properaties .info .size .hint-size {
  padding: 10px 20px;
  min-width: 100px;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 4px;
  color: #6F105F;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .edit-properaties .info .size .hint-size {
    padding: 10px;
    font-size: 17px;
    min-width: 70px;
  }
}
html[lang=en] .edit-properaties .info .size .hint-size:not(:last-child) {
  margin-right: 15px;
}
html[lang=ar] .edit-properaties .info .size .hint-size:not(:last-child) {
  margin-left: 15px;
}
.edit-properaties .card-foot {
  flex-wrap: wrap;
}
.edit-properaties .card-foot .hint-span {
  padding: 8px 15px;
}
@media (max-width: 768px) {
  .edit-properaties .card-foot .hint-span {
    margin: 15px 0;
  }
}
@media (max-width: 320px) {
  .edit-properaties .card-foot .hint-span {
    padding: 5px;
  }
}

.prod-btns.edit-prop .prod-btn {
  min-width: 170px;
}
.prod-btns.packg-btn .prod-btn {
  min-width: 120px;
  max-width: 100%;
  height: 50px;
}

.disc-tabs-2 .hint-status .anchor {
  padding: 15px 30px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .disc-tabs-2 .hint-status .anchor {
    min-width: 250px;
  }
}
@media (max-width: 425px) {
  .disc-tabs-2 .hint-status .anchor {
    min-width: 140px;
  }
}
@media (max-width: 320px) {
  .disc-tabs-2 .hint-status .anchor {
    min-width: 110px;
    padding: 10px 30px;
  }
}

.product-details-setting .item-append-category,
.product-details-setting .item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.product-details-setting .item-append-category::before,
.product-details-setting .item::before {
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.35);
  content: "";
  z-index: 1;
  position: absolute;
}
html[lang=en] .product-details-setting .item-append-category::before,
html[lang=en] .product-details-setting .item::before {
  right: 0;
}
html[lang=ar] .product-details-setting .item-append-category::before,
html[lang=ar] .product-details-setting .item::before {
  left: 0;
}
.product-details-setting .item-append-category .img-prv,
.product-details-setting .item .img-prv {
  height: 350px;
  object-fit: cover;
  width: 100%;
}
.product-details-setting .append-category-img {
  position: relative;
}
.product-details-setting .append-category-img img {
  height: 350px;
  object-fit: cover;
}
.product-details-setting .append-category-img .remove-appendedd {
  position: absolute;
  top: 20px;
  z-index: 5;
  background-color: #000;
  padding: 10px;
  border-radius: 4px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
html[lang=en] .product-details-setting .append-category-img .remove-appendedd {
  right: 20px;
}
html[lang=ar] .product-details-setting .append-category-img .remove-appendedd {
  left: 20px;
}
.product-details-setting .owl-nav {
  position: absolute;
  bottom: -7px;
}
html[lang=en] .product-details-setting .owl-nav {
  right: 25px;
}
html[lang=ar] .product-details-setting .owl-nav {
  left: 25px;
}
.product-details-setting .owl-nav .owl-prev,
.product-details-setting .owl-nav .owl-next {
  position: absolute;
  font-size: 35px;
  color: #666666 !important;
  width: 30px;
  height: 30px;
  background: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 3px #949494;
  border-radius: 5px;
  font-size: 25px !important;
}
.product-details-setting .owl-nav .owl-prev:hover,
.product-details-setting .owl-nav .owl-next:hover {
  background: #6F105F !important;
  color: #fff !important;
}
html[lang=en] .product-details-setting .owl-nav .owl-prev {
  right: 35px;
}
html[lang=ar] .product-details-setting .owl-nav .owl-prev {
  left: 35px;
}
html[lang=en] .product-details-setting .owl-nav .owl-next {
  right: -35px;
}
html[lang=ar] .product-details-setting .owl-nav .owl-next {
  left: -35px;
}

.uploader_img {
  position: relative;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #f5f5f5;
  box-shadow: 0 0 0 2px #ededed;
}
.uploader_img .icon {
  position: absolute;
  top: 50%;
  font-size: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666666;
}
html[lang=en] .uploader_img .icon {
  right: 20px;
}
html[lang=ar] .uploader_img .icon {
  left: 20px;
}
.uploader_img .dn-input {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
html[lang=en] .uploader_img .dn-input {
  left: 0;
}
html[lang=ar] .uploader_img .dn-input {
  right: 0;
}
.uploader_img .upload-preview {
  position: relative;
}
.uploader_img .upload-preview a {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: move;
}
.uploader_img .upload-preview img {
  width: 70px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}

.upload-btn-form .img-preview {
  display: flex;
  align-items: center;
}
.upload-btn-form .img-preview .uploaded {
  position: relative;
}
.upload-btn-form .img-preview .uploaded a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 22;
  cursor: move;
}
html[lang=en] .upload-btn-form .img-preview .uploaded:not(:last-child) {
  margin-right: 15px;
}
html[lang=ar] .upload-btn-form .img-preview .uploaded:not(:last-child) {
  margin-left: 15px;
}
@media (max-width: 425px) {
  html[lang=en] .upload-btn-form .img-preview .uploaded:not(:last-child) {
    margin-right: 8px;
  }
  html[lang=ar] .upload-btn-form .img-preview .uploaded:not(:last-child) {
    margin-left: 8px;
  }
}
.upload-btn-form .img-preview .uploaded img {
  width: 70px;
  height: 35px;
  object-fit: cover;
  border-radius: 2px;
}
.upload-btn-form .img-preview .remove-appendedd {
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 14px;
  top: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #6F105F;
  border-radius: 50%;
  font-style: normal;
  cursor: pointer;
  z-index: 2222;
}
html[lang=en] .upload-btn-form .img-preview .remove-appendedd {
  left: -5px;
}
html[lang=ar] .upload-btn-form .img-preview .remove-appendedd {
  right: -5px;
}

.subscriptions-slider .item {
  margin: 10px;
}
.subscriptions-slider .owl-nav {
  position: absolute;
  bottom: -7px;
}
html[lang=en] .subscriptions-slider .owl-nav {
  right: 25px;
}
html[lang=ar] .subscriptions-slider .owl-nav {
  left: 25px;
}
.subscriptions-slider .owl-nav .owl-prev,
.subscriptions-slider .owl-nav .owl-next {
  position: absolute;
  font-size: 35px;
  color: #666666 !important;
  width: 30px;
  height: 30px;
  background: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 3px #949494;
  border-radius: 5px;
  font-size: 25px !important;
}
.subscriptions-slider .owl-nav .owl-prev:hover,
.subscriptions-slider .owl-nav .owl-next:hover {
  background: #6F105F !important;
  color: #fff !important;
}
html[lang=en] .subscriptions-slider .owl-nav .owl-prev {
  right: 35px;
}
html[lang=ar] .subscriptions-slider .owl-nav .owl-prev {
  left: 35px;
}
html[lang=en] .subscriptions-slider .owl-nav .owl-next {
  right: -35px;
}
html[lang=ar] .subscriptions-slider .owl-nav .owl-next {
  left: -35px;
}

.cantact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  gap: 1px;
}
@media (max-width: 425px) {
  .cantact-section {
    gap: inherit;
    flex-wrap: wrap;
  }
}
.cantact-section .hint {
  width: 100%;
  background-color: #6F105F;
  color: #fff;
  padding: 20px 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cantact-section .hint .icon {
  color: #fff;
  font-size: 18px;
}
html[lang=en] .cantact-section .hint .icon {
  margin-right: 15px;
}
html[lang=ar] .cantact-section .hint .icon {
  margin-left: 15px;
}
@media (max-width: 425px) {
  .cantact-section .hint {
    justify-content: flex-start;
    font-size: 15px;
    padding: 15px;
  }
}

.notf-section .col-12:not(:last-child) {
  margin-bottom: 30px;
}

.notf-item {
  padding: 15px;
}
.notf-item .title-prop {
  margin-bottom: 0;
}

.with-date-hint {
  padding: 7px 30px !important;
}
html[lang=en] .with-date-hint {
  margin-right: 15px;
}
html[lang=ar] .with-date-hint {
  margin-left: 15px;
}

.input-date-2 {
  width: 100px;
  padding: 0 10px;
}

@media (max-width: 425px) {
  .main-hint-date:not(:last-child) {
    margin-bottom: 15px;
  }
}

.lg-switch small {
  width: 110px;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.16);
}
@media (max-width: 425px) {
  .lg-switch small {
    margin-top: 0;
  }
}
.lg-switch small::after {
  content: "إرسال كهدية";
}
.lg-switch input:checked ~ small:after {
  content: "تفعيل المحادثة ";
}
.lg-switch input:checked ~ small:before {
  background-color: #52c535;
}
html[lang=en] .lg-switch input:checked ~ small:before {
  transform: translate(-82px, 0px);
}
html[lang=ar] .lg-switch input:checked ~ small:before {
  transform: translate(82px, 0px);
}
.lg-switch.toggle-switch small::after {
  content: "استقبال طلبات";
}
.lg-switch.toggle-switch input:checked ~ small:after {
  content: "استقبال طلبات";
}

.layout-btns {
  position: absolute;
}
html[lang=en] .layout-btns {
  right: 15px;
}
html[lang=ar] .layout-btns {
  left: 15px;
}
@media (max-width: 768px) {
  html[lang=en] .layout-btns {
    right: 50%;
  }
  html[lang=ar] .layout-btns {
    left: 50%;
  }
  html[lang=en] .layout-btns {
    transform: translateX(50%);
  }
  html[lang=ar] .layout-btns {
    transform: translateX(-50%);
  }
}

.main-btns {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.16);
}
@media (max-width: 320px) {
  .main-btns {
    margin-bottom: 12px;
  }
}
.main-btns .btn-text {
  color: #000;
}
html[lang=en] .main-btns .btn-text {
  margin-right: 5px;
}
html[lang=ar] .main-btns .btn-text {
  margin-left: 5px;
}
.main-btns .copy-btn {
  padding: 3px 8px;
  color: #fff;
  background-color: #6F105F;
  border-radius: 4px;
  line-height: 15px;
}

@media (max-width: 425px) {
  .sm-switch small {
    margin-top: 0;
  }
}
.sm-switch small::after {
  content: "غير متوفر";
}
.sm-switch input:checked ~ small:after {
  content: "متوفر";
}

@media (max-width: 425px) {
  .first-switch small {
    margin-top: 0;
  }
}
.first-switch small::after {
  content: "إخفاء";
}
.first-switch input:checked ~ small:after {
  content: "إظهار";
}
.first-switch.tb-switch small::after {
  content: "إلغاء";
}
.first-switch.tb-switch input:checked ~ small:after {
  content: "تفعيل";
}

html[lang=en] .switch {
  margin-right: 15px;
}
html[lang=ar] .switch {
  margin-left: 15px;
}
@media (max-width: 425px) {
  html[lang=en] .switch {
    margin-right: 10px;
  }
  html[lang=ar] .switch {
    margin-left: 10px;
  }
}

.sec-switch {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-sec-prod {
  max-height: 102px;
  overflow-y: auto;
  /* Track */
  /* Handle */
}
html[lang=en] .main-sec-prod {
  padding-right: 5px;
}
html[lang=ar] .main-sec-prod {
  padding-left: 5px;
}
.main-sec-prod::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  transition: 0.3s;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .main-sec-prod::-webkit-scrollbar {
    height: 1px;
  }
}
.main-sec-prod::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.main-sec-prod::-webkit-scrollbar-thumb {
  background: linear-gradient(rgba(24, 74, 31, 0.3), #7c0599);
  border-radius: 2px;
}
.main-sec-prod .right:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 15px;
}
.main-sec-prod .right .status-order {
  font-size: 16px;
  color: #000;
}
.main-sec-prod .right .status-order.left {
  color: #6F105F;
}

.card-reviews {
  max-height: 380px;
  min-height: max-content;
  overflow: auto;
  /* Track */
  /* Handle */
  overflow-y: auto;
}
html[lang=en] .card-reviews {
  padding-right: 10px;
}
html[lang=ar] .card-reviews {
  padding-left: 10px;
}
.card-reviews.custom-height {
  max-height: 600px;
}
.card-reviews::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  transition: 0.3s;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .card-reviews::-webkit-scrollbar {
    height: 1px;
  }
}
.card-reviews::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.card-reviews::-webkit-scrollbar-thumb {
  background: linear-gradient(rgba(24, 74, 31, 0.3), #7c0599);
}
.card-reviews .name-prod {
  align-items: flex-start;
  justify-content: start;
  flex-direction: column;
}
.card-reviews .name-prod:not(:last-child) {
  margin-bottom: 12px;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 12px;
}
.card-reviews .name-prod .img-prod {
  margin-bottom: 10px;
}
.card-reviews .name-prod .img-prod .img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
html[lang=en] .card-reviews .name-prod .img-prod .img {
  margin-right: 20px;
}
html[lang=ar] .card-reviews .name-prod .img-prod .img {
  margin-left: 20px;
}
@media (max-width: 425px) {
  .card-reviews .name-prod .img-prod .img {
    width: 55px;
    height: 55px;
  }
  html[lang=en] .card-reviews .name-prod .img-prod .img {
    margin-right: 10px;
  }
  html[lang=ar] .card-reviews .name-prod .img-prod .img {
    margin-left: 10px;
  }
}
.card-reviews .name-prod .img-prod,
.card-reviews .name-prod .rate-sec {
  width: 100%;
}
.card-reviews .name-prod .rate-sec {
  margin-top: 5px;
}
.card-reviews .name-prod .main-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-reviews .name-prod .disc {
  font-size: 14px;
  color: #000;
}

.rateYo .jq-ry-normal-group svg {
  fill: white;
  stroke: #ffc107;
  stroke-width: 20;
}
.rateYo .jq-ry-rated-group svg {
  fill: #ffc107;
  stroke: white;
  stroke-width: 20;
}

html[lang=en] .city-modal .close {
  float: left;
}
html[lang=ar] .city-modal .close {
  float: right;
}

.text-1 {
  font-size: 11px;
}

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

.text-3 {
  font-size: 13px;
}

.text-4 {
  font-size: 14px;
}

.text-5 {
  font-size: 15px;
}

.text-6 {
  font-size: 16px;
}

.text-7 {
  font-size: 17px;
}

.text-8 {
  font-size: 18px;
}

.text-9 {
  font-size: 19px;
}

.text-10 {
  font-size: 20px;
}

.add-prod-btn button {
  background: transparent;
  color: #fff;
  padding: 10px 15px;
}

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