/* random wallpaper for login */
body.vertical-layout.login {
    background-color: #333;
}

/* random wallpaper for login */
.authenticate-bg {
    /* background: url(https://source.unsplash.com/collection/1501932/1024x768); */
    background: url(https://source.unsplash.com/1024x768/?warehouse);

    background-size: cover;
    background-position: center;
    min-height: 100vh;
    opacity: 0.9;
}

/* svg icon as logo in nav bar */
.nav-bar-logo {
    display: inline-block;
    width: 18px;
    vertical-align: middle;
    margin-right: 7px;
    filter: invert(0.7) sepia(1) saturate(14) hue-rotate(195deg);
}

.contentbar {
    margin-top: 144px;
}

/* worker card needs static height for description */
.card p.card-description {
    height: 50px;
}

.card.worker-card {
    transition: box-shadow .1s;
}

.card.worker-card:hover {

    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
}

/* without other items, the profile icon needs extra margin */
.profilebar {
    margin-top: 15px;
}

/* for log files*/
pre {
    font-size: smaller;
}

/* pulsating heart */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.heart-pulse {
    animation: pulse 3s infinite ease-in-out;
}

.heart-pulse-faster {
    animation: pulse 1s infinite ease-in-out;
}

/* search in bar */
.search-container {
    margin-top: 3px;
    float: right;
}

.page-item.active .page-link {
    z-index: 0;
}

.searchbar input[type=search] {
    background-color: rgba(129, 167, 205, 0.1);
    color: #263a5b;
    font-size: 16px;
    padding-left: 20px;
    border: none;
    border-radius: 3px 0 0 3px;
}

.searchbar .btn {
    background-color: rgba(129, 167, 205, 0.1);
    color: #263a5b;
    font-weight: 700;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0 3px 3px 0;
    padding: 3px 15px 3px 5px;
    box-shadow: none;
}

.searchbar .btn img {
    width: 20px;
    margin-top: -3px;
    filter: invert(0.6) sepia(1) saturate(1) hue-rotate(185deg);
}

/**/
span.switchery {
    margin-bottom: 0px;
}

.alert-sm {
    padding-top: 2px;
    padding-bottom: 2px;
}

.table th {
    text-transform: none;
}

.accordion>.card h2 .btn-link,
.accordion>.card h2 .btn-link.collapsed {
    color: #ffa800;

}

.spinner-border-sm {
    border-width: 0.15em;

}
