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