﻿.nav-bg{
    background: #eeeeee;
}
.app-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}
.hero{
    min-height: calc(100vh - 120px);
    height: calc(100vh - 120px);
    width: 100%;
    background-image: url("../img/cover.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cover{
    min-height: calc(100vh - 120px);
    height: calc(100vh - 120px);
    width: 100%;
    background-image: url('../img/library.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.dashboard-cover {
    min-height: calc(100vh - 100px);
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url('../img/library.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.dashboard-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}
.dashboard-cover > * {
    position: relative;
    z-index: 2;
}
.bg-purple{background: #621486;}
.bg-green{background: #004615;}
.bg-card{ background: #d8d8d8; }
.bg-indigo{background: #4140a0;}
.bg-grey{background: #343a40;}
.bg-brown{background: #703100;}

.mem-card{
    height: 100%;
}
.member-fields input[name^="memberId"]{
    max-width: 120px; min-width: 100px; width: 100%;
}
.member-fields input[name^="fullname"]{
    max-width: 180px; min-width: 100px;
}
.member-fields input[name^="email"]{
    max-width: 350px; min-width: 200px; width: 100%;
}

@media print{
    .navbar, .navbar *{
        display: none !important;
    }
    .btn, .fa-print{
        display: none !important;
    }
    .container{
        width: 890px !important;
        min-width: 890px !important;
        max-width: 890px !important;
        margin: 0 auto !important;
        background: #fff !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    @page {
        size: A4 portrait;
    }
}