.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--color-main);
    z-index: 999;
}
.custom-loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
.custom-loader img {
    width: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0) invert(1);
}
.dots_loader {
    width:10px;
    height:10px;
    margin: 15px auto 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 20px 0 #ffffff40,-20px 0 #fff;
    animation:d5 1s infinite linear alternate;
}
@keyframes d5 {
    0% {box-shadow: 20px 0 #fff,-20px 0 #ffffff40;background: #fff}
    33%{box-shadow: 20px 0 #fff,-20px 0 #ffffff40;background: #ffffff40}
    66%{box-shadow: 20px 0 #ffffff40,-20px 0 #fff;background: #ffffff40}
}