@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


.lock-screen-container {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 999999;
    background: rgba(180, 180, 180, 0.4);
    font-family: Arial;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    -ms-justify-content: center;
    -ms-flex-pack: center;
    align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: both;
}
.lock-screen-exit-anim{
    animation-name: fadeOut;
    animation-duration: 500ms;
    animation-fill-mode: both;
}


.lock-screen-non-blocking {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%) translateY(-50%);
}

.lock-screen-see-through {
    background: rgba(180, 180, 180, 0.4);
}
.load-spinner {
    /*width: 80px;*/
    /*height: 80px;*/
    /*background-color: #e26714;*/
    /*-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;*/
    /*animation: sk-rotateplane 1.2s infinite ease-in-out;*/
    color: #326b99;
    /*font-size: 100px;*/

}

/*@keyframes sk-rotateplane {*/
/*0% {*/
/*transform: perspective(120px) rotateX(0deg) rotateY(0deg);*/
/*-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);*/
/*}*/
/*50% {*/
/*transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);*/
/*-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);*/
/*}*/
/*100% {*/
/*transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);*/
/*-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);*/
/*}*/
/*}*/

.load-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:20px 50px;
    box-shadow: 1px 1px 1px 1px lightgrey;
    border-radius: 3px;
    background:white;
}

.load-text {
    margin-top: 10px;
    font-size: 13px;
    color: #326b99;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 110px;
    height: 110px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    margin: 6px;
    border: 6px solid #326b99;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #326b99 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
