.spin-loader {
    border-radius: 80%;
    display: block;
    height: 79px;
    width: 79px;
    position: relative;
    -webkit-animation: spin 0.675s linear 0s infinite normal;
    animation: spin 0.675s linear 0s infinite normal;
    background: #ccc;
}
.spin-loader.objects-loader {
    margin: 0 auto;
}
.spin-loader:before, .spin-loader:after {
    content: "";
    display: block;
    position: absolute;
}
.spin-loader:before {
    border-radius: 0 90px 90px 0;
    height: 79px;
    width: 50%;
    top: 0;
    right: 0;
    z-index: 1;
    background: rgba(30, 30, 30, 0);
    background-image: linear-gradient(rgba(30, 30, 30, 0), rgba(22, 51, 0, 1));
}
.spin-loader:after {
    border-radius: 80%;
    height: 65px;
    width: 65px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: #fff;
}
@media screen and (max-width: 767px) {
    .spin-loader:after {
        background-color: #ECEEEB;
    }
}
.spin-loader.objects-loader:after {
    background-color: #ECEEEB;
}
@-webkit-keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.div-loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*background-color: #fff;*/
    z-index: 999;
}
.div-loader.active {
    display: flex;
}
.spin-loader-desc {
    font-family: "Proxima Nova", sans-serif;
    color: rgba(22, 51, 0, 1);
    font-size: 17px;
    line-height: 17px;
    margin-top: 30px;
    font-weight: bold;
}