.crp-loader {
    position: fixed;
    inset: 0;
    background: rgba(15, 27, 42, 0.35);
    backdrop-filter: saturate(100%) blur(1px);
    display: grid;
    place-items: center;
    z-index: 9999;
}
.crp-spinner {
    width: 40px;
    height: 40px;
    margin: 100px auto;
    background-color: #333;

    border-radius: 100%;
    -webkit-animation: crp-sk-scaleout 1s infinite ease-in-out;
    animation: crp-sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes crp-sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes crp-sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
