@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: "Open Sans",sans-serif;
}

#logo {
    display: block;
    width: 200px;
    height 100px;
    background: url(logo.png) no-repeat 0 0;
}

a, .btn-link {
    color: #0366d6;
}

/*.sidebar .nav-item:nth-last-child(-n+2) {*/ /*Added to try to get the lower 2 children to stick to the bottom of the sidebar*/
/*color: red;*/
/*position: sticky;*/
/*bottom: 0vw;*/
/*}*/

ul /*:nth-last-child(-n+2){
    margin-top: auto;
}*/
.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-row {
    height: 50px; /*3.5rem*/
    display: flex;
    align-items: center;
    vertical-align: middle;
    text-align: center;
}

.main {
    flex: 1;
}

    .main .top-row {
        text-align: center;
        color: #ffffff;
        font-weight: 400;
        font-size: 22px;
        background-color: #298ec3;
        justify-content: center;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap; /*features about the top row text*/
            margin-left: 2rem; /*The distance around the text on the left*/
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.sidebar .oi {
    width: 30px;
    vertical-align: text-top;
    top: -1px;
}

.sidebar .nav-item {
    /* font-size: 1.8vw; */ /* the size of the text of the items*/
    padding-bottom: 1rem;
}
    /*Sets the border size above and under the list object*/
    .sidebar .nav-item:first-of-type {
        padding-top: 2rem;
    }

    .sidebar .nav-item:last-of-type {
        padding-bottom: 2rem;
    }

    .sidebar .nav-item a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem; /*Sets the size of the item box*/
        display: flex;
        align-items: center;
        text-decoration: none;
        font-weight: 500;
        line-height: 3rem;
    }

        /*NOTE: the order does matter for overriding the active white color*/
        .sidebar .nav-item a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .sidebar .nav-item a:hover {
            background-color: rgba(255,255,255,0.1);
            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; /*The base height of only the error bar*/
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@media (max-width: 767.98px) {
    .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;
    }
}


app {
    flex-direction: row;
}

.sidebar {
    width: 240px;
    height: 100%;
    position: sticky;
    top: 0;
    left: 0;
}

.main .top-row {
    position: sticky;
    top: 0;
    z-index: 50;
}

.ERROR {
    color: red;
}

.NoWrap {
    white-space: nowrap;
}

.CheckTable {
    width: auto !important;
    max-width: auto;    
    border: 0px !important;
}

.CheckTable thead {
    background-color: #298ec3;
    border: 0px !important;
}

.CheckTable td {
    padding: 5px !important;
    margin: 5px !important;
    border: 0px !important;
}

.CheckTable th {
    padding-top: 5px !important;
    padding-right: 20px !important;
    padding-bottom: 5px !important;
    padding-left: 5px !important;
    margin: 5px !important;
    color: #fff !important;
    border: 0px !important;
}

.CheckTable tr {
    height: auto !important;
}

.CheckSucceeded {
    text-align: center;
    color: rgb(46, 200, 20);
}

.CheckFailed {
    text-align: center;
    color: rgb(200, 20, 20);
}

.CheckBusy {
    text-align: center;
    color: rgb(5, 20, 255);
}

.CheckQueued {
    text-align: center;
    color: rgb(46, 200, 20);
}

.main > div {
    padding-left: 2rem !important;
    padding-right: 1.5rem !important;
}

.navbar-toggler {
    display: none;
}

.sidebar {
    background: #298ec3;
}


#sidebar {
    background-image: linear-gradient(180deg, #298ec3 0%, rgb(34, 45, 128) 33%, rgb(86, 38, 125) 66%, rgb(175, 81, 145) 100%);
    display: block;
}
