.loaderScreen{
/*    display: none;*/
    width: 100%;
    height: 100vh;
    position: absolute;
    background-color: #00000073;
    z-index: 100000;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loaderInside img{
     width: 70px;
    position: absolute;
    padding-top: 15px;
    margin-left: 15px;
}

.spinner {
  border-width: 8px ;
  border-style: solid;
  border-color: white white white transparent;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: spin 1.5s infinite;
  position: relative;
  
/*  margin: 6em auto;*/
  
  &:before, &:after {
    content: '';
    width: 8px ;
    height: 8px ;
    border-radius: 50%;
    background: white;
    position: absolute;
    left: 8px ;
  }
  
  &:before {
    top: 2px ;
  }
  
  &:after {
    bottom: 2px ;
  }
}

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