@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@font-face {
  font-family: "arFont";
  src: url("../fonts/AraHamahHoms.ttf"); }

html {
  scroll-behavior: smooth; }

body {
  font-family: "arFont";
  font-weight: 200;
  direction: rtl;
  background: #FAF9FA;
  width: 100%;
  overflow-x: hidden; }

.home-b {
  padding-top: 100px; }

.login-b {
  padding-top: 3.75rem; }

input:focus, a:focus, .btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus, button:focus, button.active.focus, button.active:focus, button.focus, button:active.focus, button:active:focus {
  outline: 0; }

::-moz-selection {
  background: rgba(158, 0, 57, 0.5);
  color: #fff; }

::selection {
  background: rgba(158, 0, 57, 0.5);
  color: #fff; }

.mr-b-15 {
  margin-bottom: 15px; }

.mb-30 {
  margin-bottom: 1.875rem; }

.mt-30 {
  margin-top: 1.875rem; }

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

.padd-0 {
  padding: 0; }

.mr-0 {
  margin: 0; }

.flex-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.flex-div-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center; }
  .flex-div-2 > :not(:last-child) {
    margin-left: 0.9375rem; }
  .flex-div-2 .input-group {
    flex: 1; }
  .flex-div-2 .input-group + button {
    height: 3.125rem; }
  .flex-div-2 p {
    margin-bottom: 0; }

a {
  text-decoration: none; }

h3.header {
  margin-bottom: 1.5625rem;
  font-size: 2rem; }

.header + .input-group.login-group {
  max-width: 18.75rem; }

.orange {
  color: #FF9953; }

.grey {
  color: #ADACAC; }

.pink {
  color: #9E0039; }

.b {
  color: #171725; }

.green {
  color: #53FFA9; }

a.orange:hover {
  color: #FF9953; }

a.b:hover {
  color: #171725; }

a.green:hover {
  color: #53FFA9; }

a.pink:hover {
  color: #9E0039; }

a.grey:hover {
  color: #ADACAC; }

.modal .modal-content {
  border: 0;
  border-radius: 8px;
  box-shadow: 0px 5px 10px; }
  .modal .modal-content .modal-input, .modal .modal-content .login-group {
    margin-bottom: 0.9375rem; }
  .modal .modal-content .pretty {
    margin-bottom: 15px; }

#filter-modal .modal-content {
  overflow: hidden; }

#filter-modal .modal-body {
  padding-bottom: 0; }

#filter-modal button.full {
  margin: 0 -1rem;
  border-radius: 0;
  min-width: calc(100% + 2rem); }

@media (min-width: 576px) {
  #filter-modal .modal-dialog {
    max-width: 400px; } }

button {
  transition: all .5s; }
  button:hover {
    opacity: .8; }

.no-btn {
  background: transparent;
  border: 0; }
  .no-btn img {
    margin-left: 5px; }

.button {
  border-radius: 0.5rem;
  padding: 0.375rem 0.9375rem; }
  .button img {
    margin-left: 5px; }
  .button.btn-orange {
    border: 1px solid #FF9953;
    color: #fff;
    background: #FF9953;
    font-size: initial;
   }
  .button.btn-green {
    border: 1px solid #53FFA9;
    color: #fff;
    background: #53FFA9; }
  .button.btn-pink {
    border: 1px solid #9E0039;
    color: #fff;
    background: #9E0039; }
  .button.btn-border {
    border: 1px solid #FF9953;
    color: #FF9953;
    background: transparent; }
  .button.btn-border-p {
    border: 1px solid #9E0039;
    color: #9E0039;
    background: transparent;
    height: fit-content; }
  .button.full {
    border-radius: 0.9375rem;
    min-height: 2.8125rem;
    width: 100%; }

.filter-btn {
  height: 2.5rem;
  border-radius: 1.25rem;
  background: #EFE9E9;
  color: #171725;
  padding: 0 15px;
  border: 0;
  line-height: 2.5rem; }
  .filter-btn.active {
    background: #9E0039;
    color: #fff; }

.btn-arrow {
  background: #EFE9E9;
  color: #171725;
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  margin-left: 5px; }

.form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #171725 !important;
  opacity: 1;
  /* Firefox */ }

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #171725 !important; }

.form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #171725 !important; }

.form-control:focus {
  box-shadow: none; }

.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 18px;
  /* Rounded sliders */ }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0; }
  .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #EFE9E9;
    -webkit-transition: .4s;
    transition: .4s; }
  .switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 0;
    bottom: -4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s; }
  .switch.green input:checked + .slider {
    background-color: #FF9953; }
  .switch.green input:focus + .slider {
    box-shadow: 0 0 1px #FF9953; }
    .switch.green2 input:checked + .slider {
      background-color: #FF9953; }
    .switch.green2 input:focus + .slider {
      box-shadow: 0 0 1px #FF9953; }
  .switch.orange input:checked + .slider {
    background-color: #FF9953; }
  .switch.orange input:focus + .slider {
    box-shadow: 0 0 1px #FF9953; }
  .switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px); }
  .switch .slider.round {
    border-radius: 34px; }
  .switch .slider.round:before {
    border-radius: 50%; }

.switch + span {
  margin-right: 5px; }

.modal-input {
  border: 1px solid rgba(102, 0, 37, 0.13);
  border-radius: 0.9375rem;
  min-height: 3.125rem; }

.name-wrap {
  border: 1px solid rgba(102, 0, 37, 0.13);
  border-radius: 0.9375rem;
  height: 3.125rem;
  overflow: hidden;
  background: #fff; }
  .name-wrap .form-control {
    border: 0; }
  .name-wrap .row {
    height: 100%;
    align-items: center; }
  .name-wrap .row > div:last-child {
    border-right: 1px solid rgba(102, 0, 37, 0.13); }

    .we-wrap {
      border: 1px solid #ced4da;
      border-radius: 0.25rem;
      overflow: hidden;
      padding: 0 5px; }
      .we-wrap .row > * {
        padding: 0; }
      .we-wrap .form-control {
        border: 0;
        margin-bottom: 0; }

    .add-group {
      border: 1px solid #ced4da;
      border-radius: 0.25rem;
      overflow: hidden;
      padding: 0 5px; }
      .add-group input.form-control {
        border: 0;
        margin-bottom: 0; }
      .add-group .input-group-prepend {
        display: flex;
        align-items: center; }

.send-group {
  border: 0;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  padding: 8px; }
  .send-group input {
    margin: 0;
    border: 0; }
  .send-group .input-group-prepend {
    margin: 0 !important;
    display: flex; }
  .send-group button {
    background: transparent;
    border: 0;
    padding: 0; }

.login-group {
  border: 1px solid rgba(102, 0, 37, 0.13);
  border-radius: 0.9375rem;
  height: 3.125rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #fff; }
  .login-group.disabled {
    cursor: not-allowed;
    background: #EFE9E9; }
    .login-group.disabled input {
      cursor: not-allowed;
      background: transparent; }
  .login-group.m-date {
    height: 2.5rem; }
  .login-group input {
    border: 0;
    background: transparent; }
  .login-group .input-group-prepend {
    margin: 0 !important; }
  .login-group button {
    background: transparent;
    border: 0;
    padding: 0; }

.wrap-select {
  border: 1px solid rgba(102, 0, 37, 0.13);
  border-radius: 0.9375rem;
  min-height: 3.125rem;
  padding: 0 10px 10px;
  background: #fff;
  overflow: hidden; }
  .wrap-select select {
    border: 0;
    padding-right: 0;
    padding-left: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  /*background-image: url("../assets/stores/imgs/login/arrow-d-b.svg");*/
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.397' height='6.759' viewBox='0 0 11.397 6.759'%3E%3Cpath id='Vector_4' data-name='Vector 4' d='M0,0,4.638,4.638,0,9.276' transform='translate(10.337 1.061) rotate(90)' fill='none' stroke='%23230202' stroke-linecap='round' stroke-width='1.5'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: 48%; }

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-right: 0;
  margin-left: 0; }

.date-group {
  border: 0;
  padding: 0; }
  .date-group input {
    border: 0;
    margin-right: 0;
    margin-left: 0; }
  .date-group .input-group-append, .date-group .input-group-addon {
    display: flex;
    align-items: center; }

.tag {
  display: inline-block;
  border: 1px solid rgba(102, 0, 37, 0.13);
  border-radius: 1.125rem;
  padding: 5px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-left: 10px; }
  .tag i {
    color: #9E0039;
    margin-right: 5px; }

.pretty .state label:after, .pretty .state label:before {
  left: auto;
  right: 0; }

.pretty.p-icon .state .icon {
  right: 1px;
  font-size: 14px;
  top: calc((0% - (85% - 1em)) - 0%); }

  .terms.pretty{
    margin-left: initial;
  }
  .text-info{
    color:#6c7d82 !important;
  }
  /* .terms.link{
    margin-right: .3em !important;
  } */
.pretty {
  margin-left: 1em;
  margin-right: 0; }

.pretty .state label:after, .pretty .state label:before {
  background-color: #EFE9E9;
  border-color: #B5B5B5; }

.pretty input:checked ~ .state.p-primary label:after, .pretty.p-toggle .state.p-primary label:after {
  background-color: #FF9953 !important;
  border-color: #FF9953; }
.ms-10{margin-inline-start: 1rem;}
.custom-file-upload {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 5rem;
  height: 5rem;
  cursor: pointer; }
  .custom-file-upload img {
    width: 100%;
    min-height: 100%; }
  .custom-file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
    cursor: pointer; }
  .custom-file-upload .upload-txt {
    position: absolute;
    bottom: 0;
    z-index: 2;
    background: rgba(23, 23, 37, 0.33);
    color: #fff;
    padding: 5px;
    width: 100%;
    text-align: center;
    cursor: pointer; }

.custom-file-upload-b {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 5.625rem;
  height: 5.625rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #EFE9E9; }
  .custom-file-upload-b img {
    margin-bottom: 5px; }
  .custom-file-upload-b input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
    cursor: pointer; }

.rate i {
  margin-left: 2px; }

.rate i {
  color: #FFF5EF; }

.rate i.full {
  color: #FF9953; }

.client-img {
  border-radius: 10px;
  width: 2.1875rem;
  height: 2.1875rem;
  overflow: hidden; }
  .client-img img {
    width: 100%;
    min-height: 100%; }

.datepicker {
  direction: rtl; }

.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled.disabled, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover.disabled, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active.disabled:hover[disabled], .datepicker table tr td span.active.disabled[disabled], .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover.disabled, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active:hover[disabled], .datepicker table tr td span.active[disabled], .datepicker table tr td.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover {
  background: #FF9953 !important; }

#confirm-box {
  text-align: center;
  margin: 1.875rem 0;
   }
  #confirm-box input {
    border: 1px solid #EFE9E9;
    border-radius: 0.9375rem;
    padding: 0.625rem 0.3125rem;
    max-width: 15%;
    font-size: 2rem;
    margin: 0 0.625rem;
    text-align: center; }
  #confirm-box input:focus {
    border-color: #9E0039 !important; }
  #confirm-box span {
    color: #171725;
    margin: 0 0.625rem; }

.dot-orange {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF9953; }

  .box-shad {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 15px;
    min-height: 60px; }
    .box-shad .flex-div {
      height: 100%;
      min-height: 40px;
      align-items: center; }
    .box-shad.mr-0 label {
      margin-bottom: 0; }

header.main-header {
  transition: all .5s;
  background: #9E0039;
  color: #fff;
  padding: 0.9375rem;
  height: 100px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99; }
  header .con-wr {
    height: 100%; }
  header button {
    font-size: 1.125rem; }
  header button.no-btn {
    color: #fff;
    height: fit-content;
    padding: 0; }
  header .notifi {
    position: relative; }
    header .notifi .notifi-dot {
      position: absolute;
      top: 1px;
      right: 2px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #FF9953; }

      header .notifi .notifi-span {
        position: absolute;
        top: 3px;
        right: -9px;
        border-radius: 50%;
       }

       header .notifi.dropdown-menu {
        padding: 0.9375rem;
       }
header .logo-wrap .logo{margin-inline-start: 45px;}
  header .dropdown-menu {
    /*padding: 0.9375rem;*/
    width: max-content;
    border-radius: 8px;
    border: 1px solid rgba(102, 0, 37, 0.13); }
    header .dropdown-menu a.pink img {
      margin-left: 3px; }
    header .dropdown-menu ul {
      max-height: 18.75rem;
      padding: 0;
      margin: 0;
      overflow-y: scroll; }
      header .dropdown-menu ul li {
        list-style: none; }
    header .dropdown-menu ul .notification {
      margin-bottom: 10px; }
    header .dropdown-menu .all {
      border-top: 1px solid rgba(102, 0, 37, 0.13);
      padding: 0.625rem; }
    header .dropdown-menu .notification {
      padding: 0;
      cursor: pointer; }
      header .dropdown-menu .notification h5, header .dropdown-menu .notification p:not(.grey), header .dropdown-menu .notification a {
        color: #171725; }
      header .dropdown-menu .notification p {
        max-width: 16.25rem; }
      header .dropdown-menu .notification .user-img {
        margin-right: 25px;
margin-left: 15px; }
  header .dropdown-toggle {
    background: transparent;
    border: 0;
    color: #fff; }
    header .dropdown-toggle img {
      margin-right: 5px; }
  header .dropdown-toggle::after {
    border: 0; }
  header .flex-div, header .flex-div-2 {
    align-items: center;
    height: 100%; }
  header .logo-wrap {
    width: 13.75rem; }
  header .flex-w {
    flex-wrap: wrap; }
    header .flex-w > div:last-child {
      flex: 2;
      padding: 0 0.9375rem 0 0; }

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  background-color: #fff; }
  .sticky .logo-wrap img {
    max-height: 70px; }

footer p {
  font-size: 1.375rem; }

/*#menu-side{
  padding:rem(15px) 0;
  margin: 0;
  background: $w;
  min-height: calc(100vh - 90px);
  li{
    list-style: none;
    padding: 10px;
    cursor: pointer;
    &:hover{
      background: $lorange;
      button{
        color: $orange;
        img{
          filter: brightness(100%);
        }
      }
      a{
        color: $orange;
        img{
          filter: brightness(100%);
        }
      }
    }
  }
  a{
    color: $b;
    text-decoration: none;
    font-size: rem(18px);
    img{
      filter: brightness(0%);
      margin-left: rem(10px);
    }
  }
  button{
    color: $b;
    font-size: rem(18px);
    img{
      filter: brightness(0%);
    }
  }
  .dropdown-toggle,.accordion-header button{
    background: transparent;
    border: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    img:first-child{
      margin-left: rem(10px);
    }
  }
  .dropdown-toggle::after,.accordion-button::after{
    border: 0;
    display: none;
  }
  .accordion-item{
    background: transparent;
    border: 0;
  }
  .accordion-button:focus {
    box-shadow: none;
  }
  .accordion-collapse{
    padding: 10px 0 0;
    li{
      padding: 5px;
      a{font-size: rem(16px);}
    }
  }
  .accordion-button:not(.collapsed){
    box-shadow: none;
  }
}*/
#wrapper {
  background: #fff; }

#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

#wrapper.toggled {
  padding-right: 15.625rem; }

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  right: 15.625rem;
  width: 0;
  min-height: 100%;
  margin-right: -15.625rem;
  background: #fff;
  overflow-y: scroll;
  min-height: calc(100% - 100px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

#wrapper.toggled #sidebar-wrapper {
  width: 15.625rem; }

#page-content-wrapper {
  width: 100%;
  position: absolute;
  padding: 15px; }

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: 0px;
  border-top-right-radius: 1.25rem; }

#wrapper #page-content-wrapper {
  background: #FAF9FA;
  min-height: 80vh; }

/* Sidebar Styles */
.sidebar-nav {
  position: absolute;
  top: 0;
  width: 15.625rem;
  margin: 0;
  list-style: none;
  /* padding:  0 15px; */
  padding: 0;
  padding-inline-end: 15px;
  margin: 0;
  background: #fff; }
  .sidebar-nav li {
    list-style: none;
    padding: 10px 0;
    cursor: pointer; }
    .sidebar-nav li:hover {
      background: #FFF5EF; }
      .sidebar-nav li:hover button, .sidebar-nav li:hover .accordion-button:not(.collapsed) {
        color: #FF9953; }
        .sidebar-nav li:hover button img, .sidebar-nav li:hover .accordion-button:not(.collapsed) img {
          filter: brightness(100%); }
      .sidebar-nav li:hover a {
        color: #FF9953; }
        .sidebar-nav li:hover a img {
          filter: brightness(100%); }
  .sidebar-nav a {
    margin: 2rem;
    color: #171725;
    text-decoration: none;
    font-size: 1.125rem; }
    .sidebar-nav a img {
      filter: brightness(0%);
      margin-left: 0.625rem;
      max-width: 1.125rem; }
  .sidebar-nav button {
    color: #171725;
    font-size: 1.125rem; }
    .sidebar-nav button img {
      filter: brightness(0%);
      max-width: 1.125rem; }
  .sidebar-nav .dropdown-toggle, .sidebar-nav .accordion-header button {
    background: transparent;
    border: 0;
    padding: 0;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .sidebar-nav .dropdown-toggle img:first-child, .sidebar-nav .accordion-header button img:first-child {
      margin-left: 0.625rem; }
  .sidebar-nav .dropdown-toggle::after, .sidebar-nav .accordion-button::after {
    border: 0;
    display: none; }
  .sidebar-nav .accordion-item {
    background: transparent;
    margin-left: 2rem;

margin-right: 2rem;
    border: 0; }
  .sidebar-nav .accordion-button:focus {
    box-shadow: none; }
  .sidebar-nav .accordion-button:not(.collapsed) {
    color: #171725; }
  .sidebar-nav .accordion-collapse {
    padding: 10px 0 0; }
    .sidebar-nav .accordion-collapse li {
      padding: 5px;
    width: 170px;}
      .sidebar-nav .accordion-collapse li a {
        font-size: 1rem; }
  .sidebar-nav .accordion-button:not(.collapsed) {
    box-shadow: none; }

.banner-d {
  background: linear-gradient(90deg, #504848 0%, black 100%);
  border-radius: 0.625rem;
  padding: 1.875rem 1.875rem 1.875rem 3.75rem;
  color: #fff; }
  .banner-d h3 {
    margin: 15px 0 10px; }
  .banner-d .banner-imgs {
    display: flex;
    align-items: flex-end;
    margin-bottom: -1.875rem; }
    .banner-d .banner-imgs img:first-child {
      margin-left: -1.875rem;
      z-index: 3; }
    .banner-d .banner-imgs img {
      max-width: 13.75rem; }
  .banner-d .store-img img {
    max-width: 6.875rem; }

.banner {
  margin-bottom: 1.875rem; }
  .banner .carousel {
    padding-bottom: 1.875rem; }
  .banner .carousel-indicators {
    margin-bottom: 0; }
  .banner .carousel-indicators [data-bs-target] {
    background: #EFE9E9;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    border: 0;
    opacity: 1; }
  .banner .carousel-indicators .active {
    width: 20px;
    background: #9E0039; }

.new-s {
  background: #FF9953;
  display: inline-block;
  border-radius: 5px;
  padding: 0 0.9375rem; }

.news-wrap {
  background: #fff;
  border-radius: 0.9375rem;
  padding: 1.25rem;
  margin-bottom: 1.875rem; }
  .news-wrap .news-img {
    border-radius: 5px;
    overflow: hidden;
    height: 8.75rem;
    margin-bottom: 0.625rem; 
    text-align: center;
  }
    .news-wrap .news-img img {
      margin: auto;
      /*width: 100%;*/
      height: 100%; }
  .news-wrap p a {
    margin-right: 5px; }

.develop-d {
  margin: 3.75rem 0 0.625rem;
  border-radius: 0.9375rem;
  background: linear-gradient(90deg, #680328 0%, #9e0039 100%);
  color: #fff;
  padding: 0.625rem 1.875rem 0 3.75rem; }
  .develop-d .flex-div {
    flex-wrap: wrap; }
  .develop-d .dev-txt {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    flex: 2;
    margin-left: 1.875rem; }
    .develop-d .dev-txt h5 {
      margin-bottom: 1.25rem; }
    .develop-d .dev-txt input {
      min-height: 2.125rem;
      border-radius: 15px;
      border: 0; }
  .develop-d .dev-img {
    margin-top: -4.6875rem;
    display: flex;
    align-items: flex-end; }
    .develop-d .dev-img img {
      max-height: 18.75rem; }

.w-wrap {
  background: #fff;
  border-radius: 0.9375rem;
  padding: 0.9375rem; }

.money > :first-child {
  display: inline-block; }

.money h2 {
  font-size: 2.5rem; }

.table-striped th {
  color: #ADACAC;
  font-size: 0.875rem; }

.table-striped > :not(caption) > * > * {
  border-bottom-width: 0;
  box-shadow: none;
  padding: 1.5rem 0.5rem; }

.table-striped > tbody > tr:nth-of-type(even) {
  background: #FAF9FA; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background: #fff; }

.table-striped a.grey {
  text-decoration: underline; }

.table-striped .flex-div-2 {
  align-items: center; }
  .table-striped .flex-div-2 p {
    margin: 0; }

.table-striped .switch {
  margin-left: 10px; }

.table-striped .table-img {
  overflow: hidden;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 10px; }
  .table-striped .table-img img {
    width: 100%;
    min-height: 100%; }

.table-striped .update-d > *:first-child {
  position: relative;
  padding-left: 15px; }
  .table-striped .update-d > *:first-child:after {
    content: '|';
    color: #ADACAC;
    position: absolute;
    left: 0;
    top: 1px; }

.table-d {
  margin-top: 1.875rem; }

.setting .nav-pills {
  border-bottom: 1px solid #EFE9E9;
  margin-bottom: 15px; }
  .setting .nav-pills a.nav-link {
    color: #171725;
    cursor: pointer;
    border-radius: 0;
    margin-left: 10px;
    font-size: 1.25rem; }
  .setting .nav-pills .nav-link.active, .setting .nav-pills .show > .nav-link {
    background: transparent;
    color: #171725;
    border-bottom: 4px solid #9E0039; }

.setting .modal-input, .setting .custom-file-upload {
  margin-bottom: 15px; }

.setting p {
  margin-bottom: 10px; }

.setting h4 {
  margin: 1.875rem 0 15px; }

.setting button.full {
  margin-top: 15px; }

.setting #pills-contact {
  margin-top: 1.875rem; }
  .setting #pills-contact .flex-div {
    margin-bottom: 15px; }
  .setting #pills-contact a.grey {
    text-decoration: underline; }

.upload img {
  margin: 0 5px; }

.login-d .login-logo {
  margin-bottom: 15px; }
  .login-d .login-logo img {
    max-width: 60px; }

.login-d .login-img img {
  max-width: 100%; }

.login-d .login-group {
  margin-bottom: 15px; }

.login-d .pretty.p-icon .state .icon {
  top: 1px; }

.login-d .pretty .state label:after, .login-d .pretty .state label:before {
  top: 0; }

.login-d .button.full {
  margin: 1 0 1rem 0 !important; }

  .frgt-pass.button{
    border: 1px solid #EFE9E9;
    cursor: pointer;
    padding: 0.475rem 0.9375rem;
    margin-bottom: .8rem;
    border-radius: 0.9375rem;
  }

 #code_modal .top-right button {
    background: none;
border: 0;
font-size: 26px;
  }

.login-d h3 {
  font-size: 2rem; }

.login-d p {
  font-size: 1.125rem; }

.resend {
  margin: 15px 0; }
  .resend span {
    margin: 0 5px; }

.nav-reg {
  justify-content: space-evenly; }
  .nav-reg.forget-nav {
    max-width: 80%;
    margin: auto; }
  .nav-reg li {
    position: relative; }
  .nav-reg .pill-num {
    display: inline-block;
    margin: 0 5px;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    background: #EFE9E9;
    line-height: 1.875rem;
    color: #ADACAC; }
  .nav-reg .nav-link {
    color: #171725;
    background: #FAF9FA;
    z-index: 2; }
  .nav-reg .nav-link.active, .nav-reg .show > .nav-link, .nav-reg .li-done button {
    background: #FAF9FA;
    color: #171725; }
    .nav-reg .nav-link.active .pill-num, .nav-reg .show > .nav-link .pill-num, .nav-reg .li-done button .pill-num {
      background: #9E0039;
      color: #fff; }
    .nav-reg .nav-link.active:after, .nav-reg .show > .nav-link:after, .nav-reg .li-done button:after {
      background: #9E0039; }
  .nav-reg li:not(:first-child):after {
    content: '';
    height: 1px;
    width: 9.375rem;
    background: #ADACAC;
    position: absolute;
    top: 50%;
    left: 100%;
    z-index: -1; }
  .nav-reg li:not(:first-child).li-active:after, .nav-reg li:not(:first-child).li-done:after {
    background: #9E0039; }

.store-r .header, .store-r p {
  text-align: center; }

.store-r .header {
  margin: 1.875rem 0; }

.store-r button.full {
  margin: 0.625rem 0 1.875rem; }

.store-r .modal-input, .store-r .custom-file-upload, .store-r .login-group {
  margin-bottom: 15px; }

.store-r .tab-pass .header {
  margin-bottom: 5px; }

.store-r .tab-pass p {
  margin-bottom: 1.875rem; }

.form .input-group, .form .wrap-select, .form .modal-input, .form label, .form .map-wrap, .form p, .form .pretty, .form .pro-img-wrap, .form .name-wrap, .form .add-f, .form .custom-file-upload-b {
  margin-bottom: 15px; }

.form button.full {
  margin: 0.9375rem 0 1.875rem; }

  #code_modal .form button.full{
    margin: 0.9375rem 0 0.875rem;
  }

.form .row {
  align-items: center; }

.map-wrap {
  border-radius: 0.9375rem;
  overflow: hidden;
  height: 18.75rem; }
  .map-wrap #map {
    width: 100%;
    height: 100%; }

.report {
  background: #fff;
  padding: 10px 15px 20px;
  border: 1px solid #EFE9E9;
  border-radius: 10px;
  margin-bottom: 15px; }
  .report h4 {
    color: #FF9953;
    font-size: 2.625rem;
    margin: 0; }
    .report h4 small {
      font-size: 16px;
      margin: 0 5px; }
  .report p {
    margin: 0; }

.numbers .date {
  max-width: 18.75rem; }

.chart-wrap {
  background: #fff;
  padding: 10px 15px 20px;
  border: 1px solid #EFE9E9;
  border-radius: 10px;
  margin-bottom: 15px; }
  .chart-wrap .flex-div-2 {
    align-items: center; }

#line-chart, #bar-chart {
  height: 18.75rem;
  width: 100%;
  font-family: "arFont"; }

.product-item {
  margin-bottom: 10px;
  direction: rtl; }
  .product-item .product-img {
    border-radius: 10px;
    height: 8rem;
    overflow: hidden;
    margin-bottom: 10px; }
    .product-item .product-img img {
      height: 100%;
      width: initial !important;
      margin: auto; }
  .product-item h5 {
    color: #9E0039;
    margin-bottom: 4px; }
  .product-item p {
    margin-bottom: 0; }

.owl-stage-outer {
  direction: ltr; }

.owl-nav {
  display: flex;
  justify-content: flex-end; }
  .owl-carousel{display:block !important;}
  .owl-nav button {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 5px;
    background-color: #EFE9E9 !important; }

.pro-img-wrap {
  position: relative; }
  .pro-img-wrap .remove {
    color: #9E0039;
    position: absolute;
    top: -5px;
    left: -5px;
    z-index: 3;
    padding: 0; }
    .pro-img-wrap .remove img {
      width: 1.25rem;
      margin: 0; }

.prod-img {
  border-radius: 10px;
  width: 5.625rem;
  height: 5.625rem;
  overflow: hidden; }
  .prod-img img {
    width: 100%;
    min-height: 100%; }

.user-img {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden; }
  .user-img img {
    width: 100%;
    min-height: 100%; }

.option {
  border: 1px solid rgba(102, 0, 37, 0.13);
  padding: 0.9375rem;
  border-radius: 0.9375rem;
  margin: 10px 0 20px; }
  .option > * {
    margin-bottom: 10px; }

.add-f i {
  margin-left: 5px; }

  .add-product-wrap {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 1.875rem; }

  .add-product-sec .form .row {
    align-items: flex-start; }

  .add-product-sec .nav-tabs .nav-item.show .nav-link, .add-product-sec .nav-tabs .nav-link.active {
    color: #FF9953; }

  .add-product-sec .nav-tabs {
    border-bottom: 0;
    z-index: 3; }
    .add-product-sec .nav-tabs li:last-child .nav-link {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .add-product-sec .nav-tabs li:first-child .nav-link {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }

  .add-product-sec .nav-link {
    border-bottom: 0; }

  .add-product-sec .nav-link:hover, .add-product-sec .nav-link:focus {
    opacity: 1; }

  .add-product-sec .nav-link:not(.active) {
    background-color: #f0f0f0;
    color: #ADACAC; }

  .add-product-sec textarea, .add-product-sec input {
    margin-bottom: 15px;
    border-radius: 0px !important; }

    .add-product-sec .input-group{
      border-radius: 0px !important;
      border: 1px solid #ced4da;
      height: initial;
    }
    .add-product-sec .input-group input{
      margin-bottom: 0px;
      border-radius: 0px !important;
    }

    .add-product-sec .multiselect{
      height: initial !important;
      border-radius: 0px !important;
      border: 1px solid #ced4da;
      padding: 0px;
    }

  .add-product-sec .tab-content textarea {
    border-top-left-radius: 0; }

  .add-product-sec .green {
    color: #FF9953; }

  .add-product-sec a.green {
    text-decoration: underline; }

  .add-product-sec a.green:hover, .add-product-sec a.green:focus {
    color: #FF9953;
    text-decoration: underline; }

  .add-product-sec .align-items-center label {
    margin-bottom: 0; }

  .add-product-sec .switch .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 2px; }

  .add-product-sec .nav-ed .nav-item.show .nav-link, .add-product-sec .nav-ed .nav-link.active {
    color: #ADACAC;
    background-color: #e6e6e6; }

.o-det {
  background: #fff;
  border: 1px solid #EFE9E9;
  padding: 1.875rem;
  border-radius: 15px;
  margin-bottom: 15px; }
  .o-det .flex-div {
    flex-wrap: wrap; }
  .o-det > div:not(:last-child) {
    border-bottom: 1px solid #EFE9E9;
    padding-bottom: 10px;
    margin-bottom: 10px; }
  .o-det h5, .o-det p {
    margin-bottom: 0; }
  .o-det a {
    font-size: 1.25rem; }
    .o-det a img {
      margin-right: 5px; }
  .o-det .rate {
    margin-top: 10px; }
  .o-det .map-wrap {
    height: 12.5rem;
    margin-top: 10px; }

.ques {
  margin-bottom: 15px;
  border-radius: 8px !important;
  border: 1px solid rgba(102, 0, 37, 0.13);
  background: #fff;
  overflow: hidden; }
  .ques .accordion-button {
    box-shadow: none;
    background: #fff;
    color: #171725;
    font-size: 1.15rem; }
    .ques .accordion-button:not(.collapsed) {
      border-bottom: 1px solid rgba(102, 0, 37, 0.13); }
  .ques .accordion-button::after {
   /* background-image: url("../assets/stores/imgs/report/arrow-orange.svg");*/
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg id='_Round_Navigation_arrow_drop_down_circle' data-name=' Round / Navigation / arrow_drop_down_circle' transform='translate(0.329)'%3E%3Crect id='Path' width='24' height='24' transform='translate(-0.329)' fill='none'/%3E%3Cpath id='_Icon_Color' data-name=' Icon Color' d='M10,20A10,10,0,1,1,20,10,10.011,10.011,0,0,1,10,20ZM7.21,9a.492.492,0,0,0-.463.307.5.5,0,0,0,.113.553l2.79,2.79a.486.486,0,0,0,.346.141.511.511,0,0,0,.364-.151l2.79-2.79a.486.486,0,0,0,.114-.54A.491.491,0,0,0,12.8,9Z' transform='translate(1.671 2)' fill='%23ff9953'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
  .ques:not(:first-of-type) {
    border-top: 1px solid rgba(102, 0, 37, 0.13); }
  .ques p {
    margin: 0;
    font-size: 1.15rem; }

section.notifications a.pink img {
  margin-left: 5px; }

.notification {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px; }
  .notification .dot-orange {
    margin-top: 8px; }
  .notification .flex-div {
    align-items: center; }
  .notification .flex-div-2 {
    align-items: flex-start;
    flex-wrap: unset; }

.contact .flex-div-2 {
  align-items: flex-start; }

.contact .contact-d {
  margin-bottom: 15px; }
  .contact .contact-d h5 {
    margin-bottom: 0; }

.contact .w-img {
  width: 2.5rem;
  height: 2.5rem; }

.cont-icon {
  background: #9E0039;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center; }

section.message {
  margin: -20px;
  background: #EFE9E9; }
  section.message > .row {
    margin: 0; }
    section.message > .row > div {
      padding: 0; }
  section.message .nav-pills {
    margin: 0;
    padding: 0;
    height: 60vh;
    width: 100%;
    overflow-x: scroll; }
    section.message .nav-pills > li {
      padding: 15px;
      width: 100%; }
    section.message .nav-pills > li > button {
      width: 100%; }
    section.message .nav-pills button > .flex-div {
      width: 100%; }
    section.message .nav-pills > li:not(:last-child) {
      border-bottom: 1px solid #fff; }
  section.message .nav-pills .nav-link.active, section.message .nav-pills .show > .nav-link {
    background: transparent;
    color: #171725; }
  section.message .nav-link {
    text-align: start;
    padding: 0;
    border-radius: 0; }
  section.message .nav-pills .flex-div .flex-div-2 {
    flex: 1; }
  section.message .nav-pills .msg-bar-txt {
    flex: 1; }

.message-bar-head {
  padding: 20px;
  background: #EAD6D6; }

.message-d {
  cursor: pointer; }
  .message-d .flex-div-2 {
    align-items: flex-start; }
  .message-d a, .message-d p:not(.grey) {
    color: #171725; }

.message-txt .msg-txt-head {
  background: #fff;
  padding: 1.5625rem 15px; }
  .message-txt .msg-txt-head .user-img {
    width: 4rem;
    height: 4rem; }
  .message-txt .msg-txt-head h4, .message-txt .msg-txt-head a {
    color: #171725; }

.message-txt .ac-messages {
  padding: 15px;
  height: 62vh;
  overflow-x: scroll; }
  .message-txt .ac-messages .msg-txt {
    padding: 15px;
    width: fit-content;
    margin-bottom: 5px;
    max-width: 50%; }
    .message-txt .ac-messages .msg-txt p {
      margin: 0; }
  .message-txt .ac-messages .sent {
    display: flex;
    align-items: flex-start;
    flex-direction: column; }
    .message-txt .ac-messages .sent .msg-txt {
      background: #9E0039;
      color: #fff;
      border-top-left-radius: 0;
      border-top-right-radius: 15px;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px; }
  .message-txt .ac-messages .recieved {
    display: flex;
    align-items: flex-end;
    flex-direction: column; }
    .message-txt .ac-messages .recieved .msg-txt {
      background: #fff;
      color: #171725;
      border-top-right-radius: 0;
      border-top-left-radius: 15px;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px; }

.message-txt .send-msg {
  background: #E5DFDF;
  padding: 15px; }

@media only screen and (max-width: 768px) {
  html {
    font-size: 12px; }
  h3.header {
    font-size: 1.8rem; }
  header .logo-wrap {
    width: fit-content;
    display: flex;
    align-items: center; }
  header .flex-w > div:last-child {
    flex-direction: column;
    align-items: flex-end; }
  header .status {
    margin-bottom: 10px; }
  .logo {
    margin: 0 10px; }
  .develop-d .dev-img img {
    max-height: 12rem; }
  .develop-d {
    padding: 0.625rem 1.875rem 0 1.75rem; }
  .develop-d .dev-txt {
    margin-top: 10px;
    margin-bottom: 10px; }
  .nav-reg li:not(:first-child):after {
    height: 0; }
  .nav-reg {
    justify-content: center; }
  select {
    background-position-x: 6px; }
  .notification .flex-div-2 {
    flex-wrap: unset; }
  td {
    min-width: 60px; }
  section.message .nav-pills {
    height: fit-content; } }

@media (max-width: 1200px) and (min-width: 769px) {
  html {
    font-size: 14px; } }

@media (min-width: 768px) {
  #wrapper {
    padding-left: 0; }
  #wrapper.toggled {
    padding-right: 15.625rem; }
  #sidebar-wrapper {
    width: 0; }
  #wrapper.toggled #sidebar-wrapper {
    width: 15.625rem; }
  #page-content-wrapper {
    padding: 20px;
    position: relative; }
  #wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0; }
  #pills-options .input-group, .tag {
    margin-bottom: 5px; } }

    /****************************************************** updat************************************************ */

.fa-facebook-f {
  background: #3B5998;
  color: white;
  border-radius: 3px;
  margin-left: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  border-radius: 3px;
  margin-left: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;


}
.fa-instagram {
  background: #9E0039;
  color: white;
  border-radius: 3px;
  margin-left: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fa-twitter {
  background: #55ACEE;
  color: white;
  border-radius: 3px;
  margin-left: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fa-tiktok{
  background: #000;
  color: white;
  border-radius: 3px;
  margin-left: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fa-whatsapp{
  background: #059862;
  color: white;
  border-radius: 3px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.switch .slider:before{
  filter: drop-shadow(0px 3px 6px rgba(48, 48, 48, 0.1));
}
.fa-envelope{
  background: #ADACAC;
  color: white;
  border-radius: 3px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fa-telegram-plane {
  background: #007bb5;
  color: white;
  border-radius: 3px;
  margin-left: 10px;

  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.b ,.grey{
  cursor: pointer;
}
.main-content{
  display: none !important;
 }
 .page  .main-content{
  display: block !important;
 }

 body li{
  display: none !important;
 }
 body ul.sidebar-nav   li{
  display: block !important;
 }
  body .main-header ul  li{
  display: block !important;
 }
 body .main-list   li{
  display: block !important;
 }
 body .content-wrap ul  li{
  display: block !important;
 }
 body .page ul  li{
  display: block !important;
 }
 .login-b  .main-content{
  display: block !important;
 }



.login-d button{
  margin: 10px 0 ;

}

 
 .sidebar-nav .card-header{
  border: unset !important;
  /* background-color: #FFF5EF  !important; */
  /* padding:  2rem !important; */
  padding: 0 !important;

}
/* .sidebar-nav .card-body{
  background-color: #FFF5EF  !important;
} */
.sidebar-nav .card{
  border: unset !important;
}
button:hover{
  box-shadow: unset !important;
}
button:focus{
  box-shadow: unset !important;
}
a{
  color: #212529;
}
a:hover{
  color: #FF9953;
}
.sidebar-nav button{
  height: 100%;
  width: 100%;
  padding: 0 !important;
  padding: 0 30px  !important;
  text-align: start;
}

body #page-content-wrapper{
  display: none !important;
}
body #__nuxt #page-content-wrapper{
  display: block !important;
}

.sidebar-nav {
  padding: 20px 0px !important;
  padding-inline-end: 15px ! important;
}
@media screen and (max-width: 767px) {
  .logo-mobile{
    width: 50px !important;
    height: 50px !important;
  }
  .logo-mobile img{
    width: 100% !important;

  }
  header .logo-wrap {
    margin: 0 !important;
    gap: 20px;
}
.no-btn .fas.fa-bars{
  font-size: 25px ;
}
.products .flex-div{
  display: block !important;
}
.products .flex-div-2{
  display: block !important;
}
.products .input-group.login-group{
margin-bottom: 20px;
}
#sidebar-wrapper{
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}
.button.btn-orange {
  margin-bottom: 10px;
}
section.message {
  margin: 0 !important;
}
.message-bar-head[data-v-6ef241a4] {
  padding: 20px;
}
.chart-wrap .chart-head .flex-div-2 , .chart-wrap .chart-head .flex-div{
  display: block !important;
  width: 100% !important;

}
.chart-wrap .chart-head .input-group{
  margin-bottom: 10px !important;
}
.report .flex-div-2 , .report .flex-div{
  display: block !important;
  width: 100% !important;

}
.report .input-group{
  margin-bottom: 10px !important;
}
.d-flex.align-items-baseline.justify-content-around{
  display: block !important;
}
.hand img{
  margin: 0 !important;
  margin-bottom: -20px !important;
}
}
section.message {
  margin: 0 !important;
}
.sidebar-nav button img {
  filter: brightness(0%) !important;
  max-width: 1.125rem;
  -webkit-filter: brightness(0%) !important;
}
.sidebar-nav .card{
  background: transparent !important;
}
.sidebar-nav   li{
  cursor: pointer !important;
}
td , th{
  white-space: nowrap !important;
}
.sidebar-nav a {
  margin: 0 10px !important;
  width: 100%;
  height: 100%;
  display: block;
}
.sidebar-nav button {
  padding: 0 10px !important;

}
#sidebar-wrapper{
  overflow-y: auto !important;
}
/* Custom scrollbar styles */
#sidebar-wrapper::-webkit-scrollbar {
  width: 5px;
}

#sidebar-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#sidebar-wrapper::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

#sidebar-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.input-group.login-group{
  align-items: center !important;
}
.input-group.login-group input{
margin: 0 !important;
}
.input-group.login-group .control{
  padding: 0 !important;
  }

  .tab-content {
    display: block !important;
}
.contact input.form-control.pe-5{
  padding: 0 !important;
}
.input-group-prepend{
  padding: 0 !important;

}
.table_wrap{
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.logo-sm{
  height: 70px;
  width: 80px;
}
.logo-sm a{
display: block;
}