﻿body.loading {
}

    body.loading .divWaitOverlay {
        display: block;
    }

.spinner.root {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1300;
    right: 0px;
    bottom: 0px;
    top: 0px;
    left: 0px;
}

    .spinner.root.hidden {
        /*visibility: hidden;*/
    }

.spinner.backdrop {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: -1;
    position: fixed;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
    opacity: 1;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.spinner.bar-container {
    min-height: 60px;
    display: flex;
    align-items: center;
    width: 65px;
    justify-content: space-between;
}

.spinner.bar-1, .spinner.bar-2, .spinner.bar-3, .spinner.bar-4, .spinner.bar-5 {
    background-color: #0275d8;
    width: 8px;
    height: 35px;
    display: inline-block;
    margin: 2px;
    border-radius: 3px;
    animation: 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0.1s infinite normal both running animation-wave;
}

.spinner.bar-2 {
    animation: 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0.2s infinite normal both running animation-wave;
}

.spinner.bar-3 {
    animation: 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0.3s infinite normal both running animation-wave;
}

.spinner.bar-4 {
    animation: 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0.4s infinite normal both running animation-wave;
}

.spinner.bar-5 {
    animation: 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0.5s infinite normal both running animation-wave;
}

@keyframes animation-wave {
    0%, 100% {
        height: 20px
    }

    50% {
        height: 50px;
    }
}
.hide {
    display: none !important;
}