.preloader{
    background-color: #100E15;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    right:0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1056;
}
.preloader-wrapper{
    text-align: center;
}
.preloader .loader-icon{
    width: 90px;
    margin-bottom: 10px;
}

.loader{
    display: flex;
    justify-content: space-between;
    width: 60px;
    margin: 0 auto;
}

.loader div {
    width: 15px;
    height: 15px;
    background-color: #ab7fff;
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
}

.loader div:nth-child(2) {
    animation-delay: -0.3s;
}

.loader div:nth-child(3) {
    animation-delay: -0.6s;
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}