  .spinner-parent-container {
    position: relative;
  }

  .ba-spin-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-animation: fadeInAnimation ease 1s forwards;
    animation: fadeInAnimation ease 1s forwards;
    z-index: 50;
    border-radius: 4px;
  }

  .ba-spin-circle {
    display: block;
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    width: 100px;
    height: 100px;

    border-style: solid;
    border-color: white;
    border-top-color: transparent;
    border-width: 8px;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    -webkit-animation: spin 0.8s linear infinite;
  }

  .ba-spin-text {
    color: white;
    margin-top: 100px;
    margin-right: 80px;
    z-index: 50;
  }

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

    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes fadeInAnimation {
    0% {
      opacity: 0;
      background-color: rgba(0, 0, 0, 0);
    }

    100% {
      opacity: 1;
      background-color: rgba(0, 0, 0, 0.5);
    }
  }
