* {
  font-family: "Noto Kufi Arabic", sans-serif !important;
}

body {
  background-color: #f0efef;
}

.navbar-custom {
  background-color: white !important;
}

.leftside-menu {
  background: #252525 !important;
}

.button-toggle-menu {
  display: none;
}

.modal-dialog {
  box-shadow: unset !important;
  -webkit-box-shadow: unset !important;
}

.side-nav .menuitem-active > a {
  color: #c3a23b !important;
}

.page-link.active, .active > .page-link {
  background-color: #c3a23b !important;
  border: 1px solid #c3a23b !important;
}

.text-primary {
  color: #c3a23b !important;
}

.form-check-input:checked {
  background-color: #c3a23b !important;
  border-color: #c3a23b !important;
}

a:hover {
  color: #c3a23b !important;
}

.card {
  overflow: scroll;
}
.card * {
  white-space: nowrap !important;
}

.dropdown-menu {
  max-height: 200px !important;
  overflow-y: scroll;
}

.loading_sys {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.368627451);
  z-index: 9999;
  top: 0;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #FFF #FFF transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin: 0 auto;
  margin-top: 40vh;
  display: block;
}

.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #c3a23b #c3a23b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

.loader::before {
  width: 32px;
  height: 32px;
  border-color: #FFF #FFF transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}/*# sourceMappingURL=style.css.map */