﻿

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: rgb(0,0,0,0.6);
    width: 100%;
    height: 100%;
    transition: ease-in-out 1s;
    z-index: 99999;
}

.loader-main-container {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    height: 100%;
}

.loading-content {
    background-color: rgb(255,255,255);
    box-shadow: 0 0.125rem 0.25rem rgba(31, 45, 61, 0.08);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    max-width: 80%;
    height: 48px;
}

.loading-off {
    display: none;
}

.loading-on {
    display: block!important;
}
.loading-msg {
    line-height: 1.25rem;
    margin-bottom: 0;
}

.loader-spinner {
    width: 1.25rem;
    height: 1.25rem;
}