   .loader-page {
    position: fixed;
    z-index: 25000;
    background: rgb(0, 0, 0,0.1);
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all .3s ease;

  

  
  }

  .loader2{

    width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid rgb(222, 18, 122);
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  }
  
  @keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
  .loader2::after {
   
     content: '';  
  box-sizing: border-box;
  position: absolute;
 
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-left: 4px solid rgb(0, 141, 59);
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
  }