@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
/* @import url('line-awesome-1.3.0/css/line-awesome.min.css'); */
@import url('fontawesome-free-6.6.0-web/css/fontawesome.min.css');
@import url('fontawesome-free-6.6.0-web/css/solid.min.css');

html, body {
    /* NOV Branding */
    font-family: Source Sans Pro,Calibri,Apple SD Gothic Neo,Helvetica,Arial;
    font-size: 1rem;
    font-weight: 400;
    overflow: hidden;
}

a, .btn-link {
    /* style derived from www.nov.com */
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity));
}

    a:hover, btn-link:hover {
        /* style derived from www.nov.com */
        --tw-text-opacity: 1;
        color: rgb(218 41 28/var(--tw-text-opacity)); /* NOV Red */
        text-decoration: none;
    }

.btn-primary,
.btn-primary:hover,
.btn-primary:disabled,
.btn-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: rgb(0,112,150); /* NOV Blue */
}

    .btn-primary:focus {
        box-shadow: 0 0 0 0.2rem rgba(130,180,201,.5); /* NOV Blue 50% Tint */
    }

.btn-secondary {
    color: #fff;
    background-color: rgb(117,120,123); /* NOV Gray */
}

.page {
    height: 100%;
    overflow-y: scroll;
}

.content {
    padding-top: 1.1rem;
}

.bold {
    font-weight: bold;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.card {
    width: 20rem;
    height: 24rem;
    outline-style: solid;
    outline-color: rgb(0,112,150); /* NOV Blue */
}

    .card a {
        /* Causes the link area to fill the card, for different amounts of text */
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

        .card a:hover {
            color: unset;
            background: lightgray;
            transition: all 0.5s;
        }

    .card span.oi,
    .card span.fa {
        width: 100%;
        font-size: 6rem;
        color: rgb(0,112,150); /* NOV Blue */
    }


#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;
    }
