﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.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;
}

.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;
    }


.bg-primary {
    background-color: #fece0a !important;
}

.spinner {
    border: 23px solid white;
    border-top: 23px solid #fece0a;
    border-radius: 50%;
    width: 123px;
    height: 123px;
    animation: spin 700ms linear infinite;
    top: calc(50% - 68px);
    left: 50%;
    position: fixed;
    z-index: 100000;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.blazored-toast-container {
    z-index: 10000 !important;
}

.timelinecom {
    max-height: 700px;
    overflow: hidden;
    border: 1px solid #808a94;
    overflow-y: auto;
}

/*.badge {
    padding: 0.6em .5em;
    font-size: 84%;
}*/

.link {
    color: #0288d1;
    cursor: pointer;
}

    .link:hover {
        color: #6c757d;
    }

.navbar {
    padding-bottom: 0.5rem;
    padding-top: 0;
}

.time-table-row {
    max-height: calc(100vh - 36rem);
    min-height: 14rem;
    overflow-x: hidden;
    overflow-y: auto;
    border-style: outset;
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d !important;
}