.loading-spinner {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #0000000d;
  z-index: 99999;
  display: none;
}
.place-spinner {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}
  
  .ring-spinner {
    display: inline-block;
    position: relative;
    width: 3rem;
    height: 3rem;
  }
  .ring-spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid;
    border-color: #2b70d8 #2b70d8 transparent transparent;
    -webkit-animation: ring-spin 1.2s cubic-bezier(0.57, 0.05, 0.58, 0.94) infinite;
            animation: ring-spin 1.2s cubic-bezier(0.57, 0.05, 0.58, 0.94) infinite;
  }
  .ring-spinner div:nth-child(1) {
    -webkit-animation-delay: -0.25s;
            animation-delay: -0.25s;
  }
  .ring-spinner div:nth-child(2) {
    -webkit-animation-delay: -0.17s;
            animation-delay: -0.17s;
  }
  .ring-spinner div:nth-child(3) {
    -webkit-animation-delay: -0.1s;
            animation-delay: -0.1s;
  }
  
  @-webkit-keyframes ring-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes ring-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }