body {
  margin: 0 !important;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

#loading-bg {
  position: absolute;
  display: block;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  inline-size: 100%;
}

.loading-logo {
  position: absolute;
  inset-block-start: 40%;
  inset-inline-start: calc(50% - 45px);
}

.loading {
  position: absolute;
  box-sizing: border-box;
  border: 3px solid transparent;
  block-size: 55px;
  border-radius: 50%;
  inline-size: 55px;
  inset-block-start: 50%;
  inset-inline-start: calc(50% - 35px);
}

.loading .effect-1,
.loading .effect-2,
.loading .effect-3 {
  position: absolute;
  box-sizing: border-box;
  border: 3px solid transparent;
  block-size: 100%;
  border-inline-start: 3px solid var(--initial-loader-color, #eee);
  border-radius: 50%;
  inline-size: 100%;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}

.loading .effect-2 {
  animation: rotate-opacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
  animation: rotate-opacity 1s ease infinite 0.2s;
}

.loading .effects {
  transition: all 0.3s ease;
}

.zoom-custom-desktop {
  zoom: 0.7 !important;
  -moz-transform: scale(0.7) !important;
  /* transform: scale(.85);
  transform-origin: 0px; */
}

.layout-vertical-nav {
  zoom: 0.8 !important;
  -moz-transform: scale(0.8) !important;
}

.layout-vertical-nav-collapsed .layout-vertical-nav:not(.hovered) {
  inline-size: 145px !important;
}


.dx-overlay-content .dx-popup-normal .dx-resizable .dx-popup-inherit-height {
  transform: translate(462px, 329px) !important
}

.optionsli:hover {
  background-color: rgb(157, 154, 154) !important;
  color: #fff;
}


.whitebg {
  background-color: rgb(157, 154, 154) !important;
  color: #fff;
}

.whiteappoitnment {
  background-color: rgb(157, 154, 154) !important;
  color: #fff;
}

.swal2-container {
  z-index: 15001 !important;
}

.swal2-title {
  font-size: 23px !important;
}

.v-expansion-panel__shadow {
  box-shadow: none !important;
}

.custom-select-in {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select-in select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 10px;
  border: 1px solid #C3C3C7;
  border-radius: 5px;
  padding-right: 30px;
}

.custom-select-in::after {
  content: '▼';
  /* Arrow down symbol */
  font-size: 12px;
  color: #7D7D7D;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.custom-input-up {
  border: 1px solid #C3C3C7;
  padding: 0px 5px;
  height: 40px;
  border-radius: 5px;
  margin-top: 3px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotate-opacity {
  0% {
    opacity: 0.1;
    transform: rotate(0deg);
  }

  100% {
    opacity: 1;
    transform: rotate(1turn);
  }
}