﻿/*.loader-wrapper {
    width: 150px;
    height: 100px;
}*/
.blockPage {
    left: 50%;
    top: 50%;
    z-index: 66;
}

    .blockPage .d-none {
        display: block !important;
    }

    .blockPage .loader {
        background: #fff;
        border-radius: 0.25rem;
        box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03), 0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03), 0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05), 0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
        padding: 1.5rem;
    }

    .blockPage .ball-grid-pulse {
        min-height: 57px;
    }
@keyframes ball-scale-ripple-multiple {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }

    70% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        opacity: 0.0;
    }
}

.ball-scale-ripple-multiple {
    position: relative;
    transform: translateY(-25px);
}

    .ball-scale-ripple-multiple > div:nth-child(0) {
        animation-delay: -0.8s;
    }

    .ball-scale-ripple-multiple > div:nth-child(1) {
        animation-delay: -0.6s;
    }

    .ball-scale-ripple-multiple > div:nth-child(2) {
        animation-delay: -0.4s;
    }

    .ball-scale-ripple-multiple > div:nth-child(3) {
        animation-delay: -0.2s;
    }

    .ball-scale-ripple-multiple > div {
        animation-fill-mode: both;
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 100%;
        top:10vh;
        left:-4vw;
        border: 3px solid #A8123E;
        animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
    }