html {
    font-size: 14px;
}
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    flex-shrink: 0;
}

a {
    color: #0077cc;
}

    a[target=_blank] {
        cursor: alias;
    }

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 120px;
}

.bottom-top-nav {
    position: fixed;
    z-index: 10;
    bottom: 15px;
    right: 15px;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
    color: black;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

#components-reconnect-modal {
    color: black !important;
    opacity: 0.9 !important;
}

.validation-message {
    color: var(--bs-red);
}

.container-medium {
    max-width: 720px;
}

.bi {
    animation: biShows 0.3s ease;
}

@keyframes biShows {
    from {
        opacity: 0;
    }
}

.offcanvas-header {
    border-bottom: 1px solid var(--bs-tertiary-bg);
}

.offcanvas-backdrop {
    visibility: collapse;
}

body:has(.offcanvas) .offcanvas-backdrop {
    display: block;
    visibility: visible !important;
    animation: OffcanvasShows 0.6s ease;
}

@keyframes OffcanvasShows {
    from {
        opacity: 0;
    }
}

.hide-empty:empty {
    display: none;
}

.login-wrapper {
    max-width: 480px;
    margin: 12% auto auto auto;
    padding: 30px 20px;
    /*background-color: var(--bs-light);*/
    /*background-color: rgb(235, 235, 235, 0.1);*/
    border-radius: 1rem;
    box-shadow: 0 0 24px -8px rgba(0,0,0,0.2);
}
.table.table-layout-fixed{
    table-layout:fixed;
}