/* ==========================================================================
   Demo styles
   ========================================================================== */
body {
    /*animation-name*/
    -webkit-animation-name: fade-in;
    -moz-animation-name: fade-in;
    -ms-animation-name: fade-in;
    -o-animation-name: fade-in;
    animation-name: fade-in;
    /*animation-duration*/
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    /*animation-timing-function*/
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    /*animation-iteration-count*/
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -ms-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

#login-block {
    overflow: hidden;
}

    #login-block > .row > div.col-sm-6 {
        max-width: 390px;
    }

.login-logo img {
    height: 60px;
}

.login-box hr, .login-form input, .alert {
    width: 84%;
}

.login-form select {
    width: 84%;
    display: block;
    margin: 0 auto 15px;
    background: #fefefe;
    border: 0;
    color: #6c6c6c;
    padding: 8px;
    border-radius: 2px;
}

#recaptcha {
    width: 84%;
    overflow: hidden;
    margin: 0 auto;
}

    #recaptcha .g-recaptcha {
        margin: 0 auto;
    }

.alert {
    margin-bottom: 15px;
    padding: 10px;
}

#progressBar {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #b91f1f;
    border-radius: 10%;
    -moz-transition: width 500ms ease-out,opacity 400ms linear;
    -ms-transition: width 500ms ease-out,opacity 400ms linear;
    -o-transition: width 500ms ease-out,opacity 400ms linear;
    -webkit-transition: width 500ms ease-out,opacity 400ms linear;
    transition: width 500ms ease-out,opacity 400ms linear;
    opacity: 0;
}

    #progressBar:before {
        position: absolute;
        content: '';
        top: 0;
        opacity: 1;
        width: 10%;
        right: 0px;
        height: 4px;
        box-shadow: #b91f1f 1px 0 6px 2px;
        border-radius: 50%;
    }

.im_notification {
    width: 290px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.notify_msg {
    font-size: 13px;
}

.notify_title {
    display: inline;
    font-size: 15px;
    font-weight: bold;
}

label.checkbox {
    width: 73%;
    margin-top: 10px;
    font-weight: normal;
}

    label.checkbox a {
        cursor: pointer;
    }

@media(max-width: 767px) {
    #login-block > .row > div.col-sm-6 {
        margin: 0 auto;
    }
}

@media(max-width: 360px) {
    .login-box {
        margin-top: 20px;
    }
}

@-webkit-keyframes slideDown {
    0%, 100% {
        -webkit-transform: translateY(-50px);
    }

    10%, 90% {
        -webkit-transform: translateY(0px);
    }
}

@-moz-keyframes slideDown {
    0%, 100% {
        -moz-transform: translateY(-50px);
    }

    10%, 90% {
        -moz-transform: translateY(0px);
    }
}

.th1 {
    background: #16A085;
}

.th2 {
    background: #2ECC71;
}

.th3 {
    background: #3498DB;
}

.th4 {
    background: #F1C40F;
}

.th5 {
    background: #E67E22;
}

.th6 {
    background: #E74C3C;
}

.th7 {
    background: #ECF0F1;
}

.th8 {
    background: #95A5A6;
}

.th9 {
    background: #00C0E4;
}

.th10 {
    background: #5BD999;
}

.th11 {
    background: #7658F8;
}

.th12 {
    background: #EAC14D;
}

.th13 {
    background: #E6567A;
}

.th14 {
    background: #CB70D7;
}

.th15 {
    background: #222D3A;
}

.bootbox.modal_3d {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}

    .bootbox.modal_3d .modal-dialog {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-transform: translateZ(-3000px) rotateY(90deg);
        -moz-transform: translateZ(-3000px) rotateY(90deg);
        -ms-transform: translateZ(-3000px) rotateY(90deg);
        transform: translateZ(-3000px) rotateY(90deg);
        opacity: 0;
        -webkit-animation: slit .7s forwards ease-out;
        -moz-animation: slit .7s forwards ease-out;
        animation: slit .7s forwards ease-out;
    }

.bootbox .modal-content {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
}

.bootbox .btn-success {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
}

.bootbox-body {
    color: #333;
}

@-webkit-keyframes slit {
    50% {
        -webkit-transform: translateZ(-250px) rotateY(89deg);
        opacity: .5;
        -webkit-animation-timing-function: ease-out;
    }

    100% {
        -webkit-transform: translateZ(0) rotateY(0deg);
        opacity: 1;
    }
}

@-moz-keyframes slit {
    50% {
        -moz-transform: translateZ(-250px) rotateY(89deg);
        opacity: .5;
        -moz-animation-timing-function: ease-out;
    }

    100% {
        -moz-transform: translateZ(0) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes slit {
    50% {
        transform: translateZ(-250px) rotateY(89deg);
        opacity: 1;
        animation-timing-function: ease-in;
    }

    100% {
        transform: translateZ(0) rotateY(0deg);
        opacity: 1;
    }
}

span.field-validation-error > span {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}


.divCaptcha {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 15px;
}

    .divCaptcha > input[type=text] {
        display: inline-block;
        font-weight: bold;
        text-transform: uppercase;
        width: 110px;
        margin-left: 30px;
    }

    .divCaptcha > img {
        display: inline-block;
        height: 36.5px;
        margin-left: 30px;
    }

    .divCaptcha > a {
        display: inline-block;
        line-height: 35px;
        margin-left: 10px;
    }

.Label_Type_Code_Shown {
    display: block;
    padding-left: 30px;
    margin-bottom: 5px;
}

.login-form input {
    clear: both;
}


.page-icon > a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

    .page-icon > a > img {
        width: 90%;
        max-width: 90%;
        height: auto;
        margin: auto !important;
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
    }

footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
}


    /*#login-block {
    padding-top: 0px !important;
}*/

    footer > div.container {
        margin-bottom: 20px;
    }

header.container {
    margin-top: 6vh;
}

    footer > div.container > span,
    header.container > span {
        display: block;
        text-align: center;
        font-size: 12px;
    }

@media only screen and (max-height: 850px) {
    footer {
        position: relative !important;
    }

    #f_action, #f_forget {
    }

    .box-singUp, .box-forget {
        margin-top: 0px !important;
    }
}

@media only screen and (min-width:768px) and (max-width: 1366px) {
    .login-box {
        margin-top: 1% !important;
    }
}

.btn-login {
    position: relative;
    height: 4rem;
    margin: 5rem 0 2.2rem;
    color: rgba(255, 255, 255, 0.8);
    background: #FF3366;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
    transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
}

    .btn-login:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -1.5rem;
        margin-top: -1.5rem;
        width: 3rem;
        height: 3rem;
        border: 2px dotted #fff;
        border-radius: 50%;
        border-left: none;
        border-bottom: none;
        -webkit-transition: opacity 0.1s 0.4s;
        transition: opacity 0.1s 0.4s;
        opacity: 0;
    }

    .btn-login.processing {
        width: 4rem;
        font-size: 0;
        border-radius: 3rem;
    }

        .btn-login.processing:after {
            opacity: 1;
            -webkit-animation: rotate 0.5s 0.4s infinite linear;
            animation: rotate 0.5s 0.4s infinite linear;
        }

@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
