/*----------------------------------------
    Login Page
------------------------------------------*/
.login-bg {
    background-image: url('../../images/gallery/flat-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}


@media only screen and (max-width: 700px) {

    .login-bg {
        background-image: none;
        background-repeat: no-repeat;
        background-size: cover;
    }
}


    #login-page {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        height: 100vh;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        #login-page .card-panel.border-radius-6.login-card {
            margin-left: 0 !important;
        }

    .countdown span.time {
        position: relative;
        left: 0px;
        top: -10px;
        padding: 0px;
        display: inline-block;
        font-family: verdana;
        font-size: 20px;
        font-weight: 900;
        color: #fff;
        border-radius: 10px;
    }

/** modal **********************************************************************/
.modalprogress {
    position: fixed;
    z-index: 9999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity=70);
    opacity: 0.7;
    -moz-opacity: 0.8;
}


.modal.modal-fixed-footer {
    height: 70%;
}

.modal {
    width: 40% !important;
    max-height: 90% !important;
}


#modal-content, #modal-content-upload, #modal-content-createcustomer, #modal-content-createuser {
    padding: 0px;
    overflow-x: hidden;
}



.modal-overlay {
    z-index: 998 !important;
}

.modal3 {
    position: fixed;
    z-index: 998;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.center1 {
    z-index: 1034;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    margin: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-style: solid;
    border-width: 10px;
    background-color: #fff;
}


.center1 img {
    position: absolute;
    top: 30px;
    left: 40px;
    height: 120px;
}


.text-align-right {
    text-align: right !important;
}

.text-align-center {
    text-align: center !important;
}

@keyframes blink {
    /**
     * At the start of the animation the dot
     * has an opacity of .2
     */
    0% {
        opacity: .2;
    }
    /**
     * At 20% the dot is fully visible and
     * then fades out slowly
     */
    20% {
        opacity: 1;
    }
    /**
     * Until it reaches an opacity of .2 and
     * the animation can start again
     */
    100% {
        opacity: .2;
    }
}

.saving {
    line-height: 0px;
    position: absolute;
    top: 128px;
    left: 62px;
    color: black;
    font-weight: 800;
    font-size: 12px;
}

    .saving span {
        animation-duration: 1.4s;
        animation-iteration-count: infinite;
        animation-fill-mode: both;
    }

        .saving span:nth-child(2) {
            animation-duration: 1.4s;
            font-size: 2em;
            animation-name: blink;
        }

        .saving span:nth-child(3) {
            animation-delay: .2s;
            font-size: 2em;
            animation-name: blink;
        }

        .saving span:nth-child(4) {
            animation-delay: .4s;
            font-size: 2em;
            animation-name: blink;
        }
