body {
    margin: 100px 0;
}

.heading h1 {
    margin-bottom: 10px;
}

.heading p {
    margin-bottom: 10px;
    text-align: center;
}

.tables {
    display: none;
}

.tab-pane {
    padding: 25px 0;
}

.custom-select {
    height: calc(2.25rem + 4px);
}

#helpButton {
    border: none;
    cursor: pointer;
}

.text-success a {
    color: #28a745!important
}

.text-muted a {
    color: #6c757d!important
}

.text-danger a {
    color: #dc3545!important;
}

.text-warning a {
    color: #ffc107!important;
}

td.actions {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

nav.breadcrumb {
    width: 70%;
    float: left;
}

.bootstrap-table .fixed-table-container .fixed-table-body {
    height: auto;
}

.nav-item.search-nav-item {
    align-self: center;
}

.loader-container {
    width: auto;
    margin: 0 auto;
    display: none;
}

#loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    height: 50px;
    width: 50px;
    margin: -25px 0 0 -25px;
}

#loader span {
    position: absolute;
    display: block;
    bottom: 10px;
    width: 9px;
    height: 15px;
    background: rgba(0, 0, 0, 0.25);
    -webkit-animation: loader 2s infinite ease-in;
    animation: loader 2s infinite ease-in;
}

#loader span:nth-child(2) {
    left: 11px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#loader span:nth-child(3) {
    left: 22px;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

#loader span:nth-child(4) {
    left: 33px;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

#loader span:nth-child(5) {
    left: 44px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

@keyframes loader {
    0% {
        background: rgba(0, 0, 0, 0.25);
    }
    25% {
        background: #000000;
    }
    50% {
        background: rgba(0, 0, 0, 0.25);
    }
    100% {
        background: rgba(0, 0, 0, 0.25);
    }
}

@-webkit-keyframes loader {
    0% {
        background: rgba(0, 0, 0, 0.25);
    }
    25% {
        background: #000000;
    }
    50% {
        background: rgba(0, 0, 0, 0.25);
    }
    100% {
        background: rgba(0, 0, 0, 0.25);
    }
}