.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--main-color);
    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;
    filter: brightness(0) invert(1);
}
.dots_loader {
    width:11px;
    height:11px;
    margin: 10px auto 0;
    background: #c9a177;
    border-radius: 50%;
    box-shadow: 20px 0 #c9a17740,-20px 0 #c9a177;
    animation:d5 1s infinite linear alternate;
}
@keyframes d5 {
    0% {box-shadow: 20px 0 #c9a177,-20px 0 #c9a17740;background: #c9a177}
    33%{box-shadow: 20px 0 #c9a177,-20px 0 #c9a17740;background: #c9a17740}
    66%{box-shadow: 20px 0 #c9a17740,-20px 0 #c9a177;background: #c9a17740}
}