/* https://cssloaders.github.io/ */

/* .loader {
    width: 48px;
    height: 48px;
    border: 3px solid #FFF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader::after {
      content: '';  
    box-sizing: border-box;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-bottom-color: #6100b0;
  }
      
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }  */


  .loaderBg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
  }

  .hide{
    display: none;
  }


  .loader {
    position: relative;
    height: 40px;
    width: 6px;
    color: #FFF;
    animation: paddles 0.75s ease-out infinite;
  }
  .loader:before {
    content: "";
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 15px;
    width: 12px;
    height: 12px;
    background-color: #06007c;
    border-radius: 50%;
    animation: ballbounce 0.6s ease-out infinite;
  }
  
  @keyframes paddles {
    0% { box-shadow: -25px -10px, 25px 10px}
    50% { box-shadow: -25px 8px, 25px -10px }
    100% { box-shadow: -25px -10px, 25px 10px}
  }
  @keyframes ballbounce {
    0% { transform: translateX(-20px) scale(1, 1.2) }
    25% { transform: scale(1.2, 1) }
    50% { transform: translateX(15px) scale(1, 1.2) }
    75% { transform: scale(1.2, 1) }
    100% { transform: translateX(-20px) }
  }
        


  .d-none{
    display: none;
  }