.loading {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loadindIcon,
:global(.loadind-icon) {
  -webkit-animation: spinLoader 1s infinite;
  animation: spinLoader 1s infinite;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  border: 3px solid;
  border-color: #000 #000 #000 transparent;
  display: block;
}

.mB0 {
  margin-bottom: 0 !important;
}

.loadingText {
  color: #fff;
  position: absolute;
  text-align: center;
  width: 100%;
  margin-top: 90px;
  animation: blinkingText 1.2s infinite;
}

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

@keyframes blinkingText {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

