

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: transparent;
  animation: ani 2s linear infinite;
}

@keyframes ani {
  0% {
    transform: rotate(0deg);
    box-shadow: 1px 5px 2px #ff002e;
  }

  50% {
    transform: rotate(180deg);
    box-shadow: 1px 5px 2px #18a401;
  }

  100% {
    transform: rotate(360deg);
    box-shadow: 1px 5px 2px #033e8e;
  }

}

input[type="file"] {
  display: none;
}
body {
  text-align: right !important;
}
.jtablesearchdropdown > ul{
  max-height: 200px;
  overflow: auto;
  }
.jtablesearchdropdown > ul > li{
padding: 3px;
text-align: center;
}
.iziToast-message.slideIn{
  direction: rtl;
}
/* 
.appbody::-webkit-scrollbar {
  width: 7px;
}

.appbody::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10rem;
  border: 1px solid #fff;
}


.appbody::-webkit-scrollbar-track-piece:start {
  background: transparent;
}

.appbody::-webkit-scrollbar-track-piece:end {
  background: transparent;
} */