/*BODY*/

.bold {
    font-weight: bold;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.center {
    text-align: center;
}

.tooltip_events {
    pointer-events: auto !important;
}

/*Back to top*/
#back_to_top {
    /*display: none; !* Hidden by default *!*/
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#back_to_top:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

/*Form Elements*/

input[type="text"]:disabled {
    border: none;
    border-color: transparent;
    background-color: #FFFFFF;
}

/*input[type="text"] {*/
/*overflow: scroll;*/
/*}*/

/*Sidebar Collapse*/
#sidebar.active {
    margin-left: -450px;
}

.navbar-header.active {
    margin-left: -450px;
}

#wrapper.active {
    background-color: #ffffff !important;
}

.collapseSidebarPage {
    margin-left: 100px !important;
    margin-right: 50px !important;
}

#sidebarCollapse {
    color: #FFFFFF;
    margin: 25px 0 0 30px;
}

.navbar-collapse {
    padding-left: 0px;
    padding-right: 0px;
}

/*Table*/
.table-responsive {
    border: 0px;
}

.table > tbody > tr > td {
    border-top: none !important;
}

.table > thead > tr {
    background-color: #337ab7;
    color: #ffffff;
}

.table-report > thead > tr {
    background-color: #ffffff;
    color: #000;
}


/*Sidebar*/

.inner-text {
    /*position: absolute;*/
    float: right;
}

#logoutButton {
    float: left;
}

.navbar-header {
    width: 320px;
}

/*Modal*/
.modal-primary {
    background-color: #337ab7;
    color: #FFFFFF;
}

/*jobCompletion*/
.status-1 {

    background-color: #b20000;
    color: white;
}

.status-2 {

    background-color: #d4f914;
    color: black;
    font-weight: bold;
}

.status-3 {
    background-color: green;
    color: white;
}

/*Notification*/

.notification .fa {
    color: red;
}

.notification small {
    color: grey;
}

.notification small a:hover {
    color: grey;
    color: grey;
    text-decoration: none;
}

.notification small a {
    color: grey !important;
}

/*Modal*/

.modal-body {
    overflow-x: auto;
}

/*Dashboard*/

.dashboard_table td {
    padding-right: 40px;
}

/* Reports */

.level_0, .level_1 {
    font-weight: bold;
}

.table_head {
    border: 0 !important;
    font-weight: normal !important;
    padding: 0 0 0 0 !important;
}

.level_2 {
    border: 0 !important;
}

#table_monthly_report {
    border: 1px solid #fff;
}

/*removing increment and decrement icon from input number*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

