/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

#dv_ajax_loading {
    width: 100% !important;
    bottom: 0% !important;
    top: 0 !important;
    left: 0 !important;
    position: fixed !important;
    background-color: rgba(0, 0, 0, 0.3);
}

.loading {
    height:100%;
    background: #000;
    opacity:0.4;
    top: 50%;
    left: 50%;
}

.loading div#dv_loading_content {
    background: url('/assets/loader/Leaves-3s-72px.svg') center no-repeat;
    height:100%;
}

.spin-container-abs {
    position: absolute;
    top: 40%;
    left: calc(50% - 20px);
}
.spin-loader {
    border-radius: 80%;
    display: block;
    height: 50px;
    width: 50px;
    position: relative;
    -webkit-animation: spin 1s linear 0s infinite normal;
    animation: spin 1s linear 0s infinite normal;
    background: #fff;
}
.spin-loader:before, .spin-loader:after {
    content: "";
    display: block;
    position: absolute;
}
.spin-loader:before {
    border-radius: 0 90px 90px 0;
    height: 50px;
    width: 50%;
    top: 0;
    right: 0;
    z-index: 1;
    background: #1ad672;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#1ad672), to(#00843e));
    background-image: -o-linear-gradient(#1ad672, #00843e);
    background-image: linear-gradient(#1ad672, #00843e);
}
.spin-loader:after {
    border-radius: 80%;
    height: 40px;
    width: 40px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    background: #fff;
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}