html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}
.loading-image {
    width: 107px;
    height:80px;
}

.loading-items-center > .bg-primary {
    background-color: white !important;
}

.loading-items-center > .border-primary {
    border-color: red !important;
}
.header-logo {
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-image: url('../images/Logo.png');
    background-position : center;
    background-size:contain;
    width: 180px;
    height: 24px;
}

.logon-side {
    max-width: 410px;
    width: 410px;
    box-shadow: none;
    border-radius: 3px;
    border:none;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}
.top-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(8,47,73,1);
    border-bottom: 1px solid rgba(0,0,0,.125)
}

.card-view-wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-view-container {
    flex: 1 1 auto;
    overflow-y: auto;
}

.card-container {
    border-radius: 0.25rem;
    padding: 1.5rem;
    color: black;
}
.card-container-blue {
    border-radius: 0.25rem;
    padding: 1.5rem;
    background-color: cornflowerblue;
    color: white;
}

.card-container-red {
    border-radius: 0.25rem;
    padding: 1.5rem;
    background-color:red;
    color:white;
}
.card-container-green {
    border-radius: 0.25rem;
    padding: 1.5rem;
    background-color: green;
    color: white;
}
.card-container-orange {
    border-radius: 0.25rem;
    padding: 1.5rem;
    background-color: orange;
    color: white;
}
.card-container-gray {
    border-radius: 0.25rem;
    padding: 1.5rem;
    background-color: darkgray;
    color: white;
}


.card-price {
    margin-bottom: 0;
}

.card-link-container {
    text-align: right;
    color: white;
}

.card-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
