.preloader-container::before{
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    background: #171a2a;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 99998;
}
.preloader_stylized{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
    background: transparent;
    border: 3px solid #181c32;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-size: 1rem;
    color: #3699ff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #3699ff;
    box-shadow: 0 0 20px rgba(0,0,0,.5);
    z-index: 99999;
}
.preloader_stylized::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #3699ff;
    border-right: 3px solid #3699ff;
    border-radius: 50%;
    animation: animateCircle 2s linear infinite;
}
.preloader_stylized span{
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 0%;
    width: 100%;
    height: 0px;
    background: #3699ff;
    transform: origin;
    animation: animateBalls 2s linear infinite;
}
.preloader_stylized span::after{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3699ff;
    top: -6px;
    left: -8px;
    box-shadow: 0 0 20px #3699ff;
}
.preloader_stylized span::before{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3699ff;
    top: -6px;
    right: -8px;
    box-shadow: 0 0 20px #3699ff;
}
@keyframes animateCircle {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
@keyframes animateBalls {
    0%{
        transform: rotate(45deg);
    }
    100%{
        transform: rotate(405deg);
    }
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }