﻿



/*LOADING*/
.loading {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #1460ab;
    z-index: 1002;
}

.load {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
}

.overlay {
    position: fixed;
    z-index: 30;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #1460ab;
    opacity: .5;
    display: none;
}

.alert {
    width: 80%;
    max-width: 400px;
    padding: 30px;
    position: fixed;
    z-index: 50;
    background-color: rgba(255,255,255,1);
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

    .alert .txt {
        text-align: center;
        padding: 15px 0;
    }

    .alert .uiBtnBar {
        width: 100%;
        margin: 0 auto;
        padding: 15px 0;
        display: flex;
        justify-content: center;
        align-items: center;






    }

    .pb10{
        padding-bottom:10px!important;
    }

    .alert .uiBtn {
        width: 150px;
        margin: 0 auto;
        display: block;
    }

.alert {
    display: none;
}

.msg {
    background-color: #f2f2f2;
    text-align: center;
    padding: 50px 0;
}


/*loading*/
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #fff;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
