.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 900;
    transition: opacity .5s ease-in-out;
    display: block;
}

.container-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 900;
    background: #fff;
    opacity: .60 !important;
    display: block;
}

.replace-loader {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 900;
    background: #f5f8fa;
    opacity: .60 !important;
}

.page-loader .pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    background-color: var(--bs-primary);
    border-radius: 100%;
    transition-timing-function: cubic-bezier(.86, 0, .07, 1);
    -webkit-animation: pulse-load 1.2s infinite ease-in-out;
    animation: pulse-load 1.2s infinite ease-in-out
}

.container-loader .pulse, .replace-loader .pulse{
    width: 40px;
    height: 40px;
    top: 50%;
    margin: auto;
    position: relative;
    background-color: var(--bs-primary);
    border-radius: 100%;
    transition-timing-function: cubic-bezier(.86, 0, .07, 1);
    -webkit-animation: pulse-load 1.2s infinite ease-in-out;
    animation: pulse-load 1.2s infinite ease-in-out
}

.container-loader .pulse {
    position: sticky;
}

.page-loader .pulse.inner {
    position: relative;
}

@-webkit-keyframes pulse-load {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

@keyframes pulse-load {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}