﻿
/*********loadingStyle********/
.loadingStyle {
    background-color: rgba(255,255,255, 0.8);
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 15px;
    top: 0px;
    left: 0px;
    position: fixed;
    z-index: 10000000;
    text-align: center;
    backdrop-filter: blur(3px);        z-index:1000;
}

.loader_txt {
    margin: 0px auto;
    width: 100px;
    text-align: center;
    position: absolute;
    top: calc(50% + 50px);
    left: calc(50% - 50px);
    color: #000 !important;
    display: block !important;
    text-indent: 0;
}




.loader {
    background-color: transparent !important;
    margin: 0px auto;
    text-align: center;
    position: absolute;
    top: calc(40%);
    left: calc(50% - 50px);
    background-image: url(logo.svg);
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    background-size: cover;
    background-color:red;
    opacity: 1;
}

    .loader:after {
        content: "";
        position: absolute;
        inset: 0;
        background: inherit;
        opacity: 0.4;
        animation: l7 1s infinite;
    }

@keyframes l7 {
    to {
        transform: scale(1.8);
        opacity: 0
    }
}
