html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.main {
    flex: 1;
}

    .main .top-row {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
        justify-content: flex-end;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

.main .top-row a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar {
    background-image: linear-gradient(180deg, #000000 0%, #000000 70%);
    position: relative;
}

    .sidebar .top-row {
        background-color: #00000080; /* last two digits are opacity */
    }

    .sidebar .navbar-brand {
        font-size: 1.1rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar .nav-item {
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
    }

        .sidebar .nav-item:first-of-type {
            padding-top: 1rem;
        }

        .sidebar .nav-item:last-of-type {
            padding-bottom: 1rem;
        }

        .sidebar .nav-item a {
            color: #d7d7d7;
            border-radius: 4px;
            height: 3rem;
            display: flex;
            align-items: center;
            line-height: 3rem;
        }

            .sidebar .nav-item a.active {
               background-color: rgba(255,255,255,0.3);
                color: white;
            }

            .sidebar .nav-item a:hover {
                background-color: rgba(255,255,255,.2);
                color: white;
            }

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#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: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

* {
    box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.btn-custom {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
}

.btn-custom:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-custom:focus, .btn-custom.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-custom.disabled, .btn-custom:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-custom:not(:disabled):not(.disabled):active, .btn-custom:not(:disabled):not(.disabled).active,
.show > .btn-custom.dropdown-toggle {
    color: #fff;
    background-color: #000000;
    border-color: #171a1d;
}

.btn-custom:not(:disabled):not(.disabled):active:focus, .btn-custom:not(:disabled):not(.disabled).active:focus,
.show > .btn-custom.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

[class*="col-"] {
    float: left;
    padding: 15px;
    width: 100%;
}

@media only screen and (max-width: 599.98px) {
    .main .top-row:not(.auth) {
        display: none;
    }

    .hide{display: inline;}

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }

    .tbox {
        height: 15px;
        width: 30%;
        text-align: right;
    }

    .tbox1 {
        height: 15px;
        width: 100%;
        text-align: right;
    }

    .wing {
        width: 20%;
        height: auto;
    }

    .col-s-0 {
        width: 0%;
        font-size: 10px;
    }

    .col-s-1 {
        width: 8.33%;
        font-size: 10px;
    }

    .col-s-2 {
        width: 16.66%;
        font-size: 10px;
    }

    .col-s-3 {
        width: 25%;
        font-size: 10px;
    }

    .col-s-4 {
        width: 33.33%;
        font-size: 10px;
    }

    .col-s-5 {
        width: 41.66%;
        font-size: 10px;
    }

    .col-s-6 {
        width: 50%;
        font-size: 10px;
    }

    .col-s-7 {
        width: 58.33%;
        font-size: 10px;
    }

    .col-s-8 {
        width: 66.66%;
        font-size: 10px;
    }

    .col-s-9 {
        width: 75%;
        font-size: 10px;
    }

    .col-s-10 {
        width: 83.33%;
        font-size: 10px;
    }

    .col-s-11 {
        width: 91.66%;
        font-size: 10px;
    }

    .col-s-12 {
        width: 100%;
        font-size: 10px;
    }
}
@media only screen and (min-width: 600px) {
   
    .main .top-row:not(.auth) {
        display: none;
    }

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }

    .tbox {
        height: 15px;
        width: 30%;
        text-align: right;
    }

    .tbox1 {
        height: 15px;
        width: 100%;
        text-align: right;
    }

    .wing {
        width: 20%;
        height: auto;
    }
    .hide {
        display: inline;
    }
    .col-m-0 {
        width: 0%;
        font-size: 10px;
    }

    .col-m-1 {
        width: 8.33%;
        font-size: 10px;
    }

    .col-m-2 {
        width: 16.66%;
        font-size: 10px;
    }

    .col-m-3 {
        width: 25%;
        font-size: 10px;
    }

    .col-m-4 {
        width: 33.33%;
        font-size: 10px;
    }

    .col-m-5 {
        width: 41.66%;
        font-size: 10px;
    }

    .col-m-6 {
        width: 50%;
        font-size: 10px;
    }

    .col-m-7 {
        width: 58.33%;
        font-size: 10px;
    }

    .col-m-8 {
        width: 66.66%;
        font-size: 10px;
    }

    .col-m-9 {
        width: 75%;
        font-size: 10px;
    }

    .col-m-10 {
        width: 83.33%;
        font-size: 10px;
    }

    .col-m-11 {
        width: 91.66%;
        font-size: 10px;
    }

    .col-m-12 {
        width: 100%;
        font-size: 10px;
    }
}
@media only screen and (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 175px;
        height: 100vh;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .tbox {
        height: 20px;
        width: 35%;
        text-align: right;
    }

    .tbox1 {
        height: 20px;
        width: 100%;
        text-align: right;
    }

    .wing {
        width: 20%;
        height: auto;
    }

    .hide {
        display: none;
    }

    .col-l-1 {
        width: 8.33%;
        font-size: 11px;
    }

    .col-l-2 {
        width: 16.66%;
        font-size: 11px;
    }

    .col-l-3 {
        width: 25%;
        font-size: 11px;
    }

    .col-l-4 {
        width: 33.33%;
        font-size: 11px;
    }

    .col-l-5 {
        width: 41.66%;
        font-size: 11px;
    }

    .col-l-6 {
        width: 50%;
        font-size: 11px
    }

    .col-l-7 {
        width: 58.33%;
        font-size: 11px
    }

    .col-l-8 {
        width: 66.66%;
        font-size: 11px
    }

    .col-l-9 {
        width: 75%;
        font-size: 11px
    }

    .col-l-10 {
        width: 83.33%;
        font-size: 11px
    }

    .col-l-11 {
        width: 91.66%;
        font-size: 11px
    }

    .col-l-12 {
        width: 100%;
        font-size: 11px
    }
}
@media only screen and (min-width: 1050px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 175px;
        height: 100vh;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .tbox {
        height: 20px;
        width: 30%;
        text-align: right;
    }

    .tbox1 {
        height: 20px;
        width: 100%;
        text-align: right;
    }

    .wing {
        width: 20%;
        height: auto;
    }

    .hide {
        display: none;
    }

    .col-vl-1 {
        width: 8.33%;
        font-size: 12px;
    }

    .col-vl-2 {
        width: 16.66%;
        font-size: 12px;
    }

    .col-vl-3 {
        width: 25%;
        font-size: 12px;
    }

    .col-vl-4 {
        width: 33.33%;
        font-size: 12px;
    }

    .col-vl-5 {
        width: 41.66%;
        font-size: 12px;
    }

    .col-vl-6 {
        width: 50%;
        font-size: 12px
    }

    .col-vl-7 {
        width: 58.33%;
        font-size: 12px
    }

    .col-vl-8 {
        width: 66.66%;
        font-size: 12px
    }

    .col-vl-9 {
        width: 75%;
        font-size: 12px
    }

    .col-vl-10 {
        width: 83.33%;
        font-size: 12px
    }

    .col-vl-11 {
        width: 91.66%;
        font-size: 12px
    }

    .col-vl-12 {
        width: 100%;
        font-size: 12px
    }
}
@media only screen and (min-width: 1400px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .tbox {
        height: 20px;
        width: 30%;
        text-align: right;
    }

    .tbox1 {
        height: 20px;
        width: 100%;
        text-align: right;
    }

    .wing {
        width: 20%;
        height: auto;
    }

    .hide {
        display: inline;
    }

    .col-xxl-1 {
        width: 8.33%;
        font-size: 14px;
    }

    .col-xxl-2 {
        width: 16.66%;
        font-size: 14px;
    }

    .col-xxl-3 {
        width: 25%;
        font-size: 14px;
    }

    .col-xxl-4 {
        width: 33.33%;
        font-size: 14px;
    }

    .col-xxl-5 {
        width: 41.66%;
        font-size: 14px;
    }

    .col-xxl-6 {
        width: 50%;
        font-size: 14px
    }

    .col-xxl-7 {
        width: 58.33%;
        font-size: 14px
    }

    .col-xxl-8 {
        width: 66.66%;
        font-size: 14px
    }

    .col-xxl-9 {
        width: 75%;
        font-size: 14px
    }

    .col-xxl-10 {
        width: 83.33%;
        font-size: 14px
    }

    .col-xxl-11 {
        width: 91.66%;
        font-size: 14px
    }

    .col-xxl-12 {
        width: 100%;
        font-size: 14px
    }
}
@media only screen and (min-width: 1650px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .tbox {
        height: 23px;
        width: 30%;
        text-align: right;
        border-width:thin
    }

    .tbox1 {
        height: 23px;
        width: 100%;
        text-align: right;
        border-width: thin
    }

    .wing {
        width: 20%;
        height: auto;
    }

    .hide {
        display: inline;
    }

    .col-xxxl-1 {
        width: 8.33%;
        font-size: 14px;
    }

    .col-xxxl-2 {
        width: 16.66%;
        font-size: 14px;
    }

    .col-xxxl-3 {
        width: 25%;
        font-size: 14px;
    }

    .col-xxxl-4 {
        width: 33.33%;
        font-size: 14px;
    }

    .col-xxxl-5 {
        width: 41.66%;
        font-size: 14px;
    }

    .col-xxxl-6 {
        width: 50%;
        font-size: 14px
    }

    .col-xxxl-7 {
        width: 58.33%;
        font-size: 14px
    }

    .col-xxxl-8 {
        width: 66.66%;
        font-size: 14px
    }

    .col-xxxl-9 {
        width: 75%;
        font-size: 14px
    }

    .col-xxxl-10 {
        width: 83.33%;
        font-size: 14px
    }

    .col-xxxl-11 {
        width: 91.66%;
        font-size: 14px
    }

    .col-xxxl-12 {
        width: 100%;
        font-size: 14px
    }
}

.beer {
    width: 60px;
    height: 60px;
}

.slide {
    width: 100%;
}

.dropdown-menu {
    background-color: #000000;
    min-width: 90%;
    -webkit-transition: transform .1s linear;
    -moz-transition: transform .1s linear;
    -o-transition: transform .1s linear;
    transition: transform .1s linear;
}

.dropright .dropdown-menu {
    margin-top: calc(100vh - 620px);
    margin-left: 12px;
}

@media only screen and (max-height : 480px) {
    .dropright .dropdown-menu {
        margin-top: -140px;
    }

    .nav-item .dropdown-menu .dropdown-item {
        height: 2rem;
        font-size: 12px;
        background-color: #000000;
    }

        .dropdown-item a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .dropdown-item a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
}

@media only screen and (min-height : 620px) {
    .dropright .dropdown-menu {
        margin-top: 0;
    }
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 2vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * .8), 500%;
            transition: stroke-dasharray .5s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }