@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

@import url('variables.css');
@import url('skuld.css');
@import url('skuldBase.css');
@import url('notification.css');

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;
}


.skuld-container {
    width: 100%;
    height: 8vh;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
}

.skuld-link {
    position: absolute;
    width: 100%;
    height: 100%;
}

.notif-link {
    z-index: 1;
    background: white;
    margin: 35px 0 0 35px;
    color: var(--secondary-text-color);
    cursor: pointer;
    top: 20px;
}

.small-icon {
    width: 100% !important;
    font-size: 0.8rem !important;
}

.img-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
}

.content {
    padding-top: 1.1rem;
}

.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;
    }

@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;
    }
}

@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

/*    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }*/

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}


.tile {
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    background: #fff;
    padding: 20px;
    margin-bottom: 10px;
}

    .tile .oi {
        width: 2rem;
    }

    .tile .title {
        margin-top: 0;
    }

    .tile.purple, .tile.blue, .tile.red, .tile.orange, .tile.green {
        color: #fff;
    }

    .tile.purple {
        background: #5133AB;
    }

        .tile.purple:hover {
            background: #3e2784;
        }

    .tile.red {
        background: #AC193D;
    }

        .tile.red:hover {
            background: #7f132d;
        }

    .tile.green {
        background: #00A600;
    }

        .tile.green:hover {
            background: #007300;
        }

    .tile.blue {
        background: #2672EC;
    }

        .tile.blue:hover {
            background: #125acd;
        }

    .tile.orange {
        background: #DC572E;
    }

        .tile.orange:hover {
            background: #b8431f;
        }

.excel-table tr.disabled-row {
    font-size: 2em;
}


.standard-btn {
    border-radius: 15px;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
    font-size: 12px;
    background-color: #d66400 !important;
    max-width: 180px;
    margin: auto;
    box-shadow: none !important;
}

    .standard-btn:hover {
        filter: brightness(75%);
        cursor: pointer;
    }

.cancel-btn {
    border-radius: 15px;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
    font-size: 12px;
    background-color: #c0c0c0 !important;
    max-width: 180px;
    margin: auto;
    box-shadow: none !important;
}

    .cancel-btn:hover {
        filter: brightness(75%);
        cursor: pointer;
    }

.active-btn {
    border-radius: 15px;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
    font-size: 12px;
    background-color: #218838 !important;
    max-width: 200px;
    margin: auto;
    box-shadow: none !important;
}

.open-btn {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    z-index: 10;
}