html {
    position: relative;
    min-height: 100%;
}
body {
    /* Margin bottom by footer height */
    margin-bottom: 70px;
}

body > .container {
    padding: 30px 15px 0;
}
/*.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

.wrap > .container {
    padding: 70px 15px 20px;
}*/

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
}


/* avatars and smiles in profiles */
div.avatar {
    position: relative;
    float: left;
}
div.avatar a img,
div.avatar img {
    padding: 3px;
    border: 1px solid white;
}
div.avatar a i.fa-times {
    padding: 3px;
    position:absolute;
    top:0;
    right:0;
    display:none;
    background-color: #fff
}
div.avatar a img:hover,
div.avatar img:hover {
    border: 1px solid black;
}
div.avatar:hover a i.fa-times {
    display: block;
}


.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
.kv-grid-bs4 a.asc:after,
.kv-grid-bs4 a.desc:after {
    /*noinspection CssNoGenericFontName*/
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding: 15px;
    border: none;
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 15px;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
}

.nav > li > form > button.logout:focus {
    outline: none;
}

/* card image */
.card-img-top {
    max-height: 200px;
    min-height: 150px;
    object-fit: cover;
}