﻿
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    display: none;
}

    .spinner-container .blocker {
        background: rgba(255, 255, 255, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 101;
    }

    .spinner-container .spinner {
        margin: 0 !important;
        width: 95px;
        font-size: 14px;
        text-align: center;
    }

.spinner {
    margin: 50vh auto 0;
    width: 95px;
    font-size: 14px;
    text-align: center;
}

    .spinner > div {
        width: 18px;
        height: 18px;
        border-radius: 100%;
        display: inline-block;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .spinner .bounce1 {
        background-color: #0c466e;
        animation-delay: -0.32s;
    }

    .spinner .bounce2 {
        background-color: #87195D;
        animation-delay: -0.16s;
    }

    .spinner .bounce3 {
        background-color: #189f9e;
    }

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.timeline.audit-logs{
    max-height:300px;
    overflow-y:auto;

}
