/* -- Imported styles ----------------------------- */
@import url("global.css");
@import url("box.css");
@import url("style.css");
/* @import url("../../../vnt_upload/ckeditor/ck_style.css"); */








/*------------------*/
.div_input {
    position: relative;
}

.div_input .form-control {

    outline: none !important;
    box-shadow: none !important;
}

.div_input.has-error .form-control {
    border-color: #a94442 !important;
}

.div_input.has-success .form-control {
    border-color: #3c763d !important;
}

.div_input.has-error label {
    color: #ff0000 !important;
}



.div_input .help-block {
    display: none;
}

.div_input.has-error em {
    position: absolute;
    z-index: 10;
    right: 0;
    top: -31px;
    white-space: nowrap;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-style: italic;
    padding: 3px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.div_input.has-error em::after {
    position: absolute;
    font-family: "FontAwesome";
    content: '\f0d7';
    color: #000;
    right: 15px;
    bottom: -12px;
}



.vnt-loading {
    position: relative;
}

.vnt-loading:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*background: rgba(0, 0, 0, 0.2);*/
    z-index: 999;
}

.vnt-loading:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 100px;
    height: 100px;
    background: url(../images/loading.svg) no-repeat center center;
    background-size: cover;
    opacity: 0.6;
}


.vnt-loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: vnt-rotation 1s linear infinite;
}