/*FORMS*/

.form-inline .form-group {
    display: inline-block
}

.form-inline .form-group label {
    display: block
}

.form-group label {
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
}


/*END FORMS*/

.content-header {
    border-bottom: 1px solid #ced4da;
    height: 45px;
    background: #e8ebef;
}

.content-header>h1 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.content-header>h1>small {
    font-size: 11px;
    display: inline-block;
    padding-left: 4px;
    font-weight: 300;
}


/*Animation CSS*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}


/*Table Fit*/

.table td.fit,
.table th.fit {
    white-space: nowrap;
    width: 1%;
}

.col-center {
    margin: 0 auto;
}

input[data-readonly] {
    pointer-events: none;
    outline: none;
}


/*Custom modal width and height*/

.modal-find-sp {
    width: 80%;
}

.div-height-250 {
    overflow-y: auto;
    height: 500px;
}

.table tbody tr.notcatered {
    background-color: #fffbeb !important;
}


/*end Custom modal width and height*/


/*Fix table header*/

div.tablewrapper {
    height: 600px;
    overflow-y: auto;
}


/* end Fix table header*/


/*Alert*/

.alert-light-danger {
    background-color: #f7b3b3;
    color: #7e2c2c;
}

.alert-light-warning {
    background-color: #e7dfc3;
    color: #806e2e;
}

.alert-custom {
    width: 100%;
    font-size: .85em;
    background-color: #c7c7c7;
    padding: 3px 10px 3px 10px;
    font-weight: 500;
    border-radius: inherit;
}

.alert-custom-light-danger {
    background-color: #f7b3b3;
    color: #7e2c2c;
}

.alert-custom-light-warning {
    background-color: #e7dfc3;
    color: #806e2e;
}

.alert-custom-danger {
    background-color: #ff0000;
    color: #ffffff;
}

.alert-custom-danger a {
    color: #ffffff;
}

.alert-custom-danger a:hover {
    color: #bbbbbb;
}


/*End alert*/

.login-box,
.register-box {
    -webkit-box-shadow: 0px 2px 26px 1px rgba(0, 0, 0, 0.91);
    -moz-box-shadow: 0px 2px 26px 1px rgba(0, 0, 0, 0.91);
    box-shadow: 0px 2px 26px 1px rgba(0, 0, 0, 0.91);
    width: 360px;
    margin: 7% auto;
}

.login-box>img {
    padding: 10px;
}