﻿@keyframes lds-ripple {
    0% {
        top: 96px;
        left: 96px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 18px;
        left: 18px;
        width: 156px;
        height: 156px;
        opacity: 0;
    }
}

@-webkit-keyframes lds-ripple {
    0% {
        top: 96px;
        left: 96px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 18px;
        left: 18px;
        width: 156px;
        height: 156px;
        opacity: 0;
    }
}

.lds-ripple {
    position: relative;
}

    .lds-ripple div {
        box-sizing: content-box;
        position: absolute;
        border-width: 4px;
        border-style: solid;
        opacity: 1;
        border-radius: 50%;
        -webkit-animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
        animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(1) {
            border-color: #e4d8eb;
        }

        .lds-ripple div:nth-child(2) {
            border-color: #caacd4;
            -webkit-animation-delay: -0.75s;
            animation-delay: -0.75s;
        }

.lds-ripple {
    width: 150px !important;
    height: 150px !important;
    -webkit-transform: translate(-75px, -75px) scale(0.75) translate(75px, 75px);
    transform: translate(-75px, -75px) scale(0.75) translate(75px, 75px);
}

#loaderOverlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .25s;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 15000; /* Specify a stack order in case you're using a different order for other elements */
}