
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: auto;

  }

  @keyframes blink {
    0% {
      opacity: 0.2;
    }

    20% {
      opacity: 1;
    }

    100% {
      opacity: 0.2;
    }
  }

  .three-dots span {
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
  }

  .three-dots span:nth-child(2) {
    animation-delay: 0.2s;
  }

  .three-dots span:nth-child(3) {
    animation-delay: 0.4s;
  }

  .loader {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 350px;
  }

  .loader-sector {
    border-radius: 50%;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 15px solid transparent;
  }

  .loader-text {
    font-size: 2em;
    font-family: Poppins, Helvetica, "sans-serif";
    font-weight: 500;
    color: #ffff;
  }

  .loader-sector-first {
    animation: rotate 2s ease-out infinite;
    border-top: 15px solid #adcd28;
  }

  .loader-sector-second {
    animation: rotate 2s ease-in infinite;
    border-top: 15px solid #0554a4;
  }

  .loader-sector-third {
    animation: rotate 2s ease-in-out infinite;
    border-top: 15px solid #049c4c;
  }

  @keyframes rotate {
    from {
      transform: rotate(0);
    }

    to {
      transform: rotate(360deg);
    }
  }

  @keyframes loading-opacity {

    0%,
    100% {
      opacity: 1;
    }

    25%,
    75% {
      opacity: 0.5;
    }

    50% {
      opacity: 0.1;
    }
  }
