@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    border: none;
}

:root {
    --main-theme-color: #0d4c80;
    --darker-theme-color: #082e4d;
    --light-dark: #222222;
    --breakpoint-sm: 968px;
    --breakpoint-md: 968px;
    --bs-body-font-family: 'Open Sans';
    --bs-font-sans-serif: 'Open Sans';
}

:root {
    --status-color: transparent;
}

html,
body {}

body {
    /* color: #fefefe; */
    display: grid;
    grid-template-rows: calc(100vh - 30px);
    grid-template-columns: auto;
}

html,
body,
p,
button,
option,
tr,
td {
    font-family: var(--bs-body-font-family), sans-serif;
}

.container {
    display: grid;
    grid-template-columns: 15rem auto;
}

a {
    text-decoration: none;
}

form label {
    margin-top: 0px !important;
}

h2 {
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 1rem;
}

h3 {
    font-weight: normal;
    font-size: 20px;
}

table {
    width: 100%;
    padding: 1rem 0px;
    border-spacing: 0;
}

table button {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 1rem !important;
}

table.stripped tr:nth-child(even) {
    background-color: #eee;
}


table tr th {
    padding: 0.75rem 1rem;
    text-align: left;
    text-transform: uppercase;
    color: #888;
    font-size: 12px;
    border-bottom: 2px solid #ccc;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

table tr td {
    padding: 0.75rem 1rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

table tr td.label {
    color: #888;
}

table tr td button.detail {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.125rem;
    color: #888;
    cursor: pointer;
}

table tr td button.detail:hover {
    color: #555;
    background: #ddd;
}

table tr td button.detail:active {
    color: #222;
}

table tr td button.detail:focus {
    color: #222;
}

table tbody tr:hover {
    background: rgba(236, 236, 236, 0.75);
}

.text-center {
    text-align: center;
}

h2 {
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 1rem;
}

h3 {
    font-weight: normal;
    font-size: 20px;
}
.text-right {
    text-align: right;
}

/*
.open {
    --status-color: #0094ff;
}

.approved, .sent {
    --status-color: #4cff00;
}

.rejected, .error {
    --status-color: #ff0000;
}

.completed {
    --status-color: #00ffff;
}


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]):not([type=radio]) {
    outline: 1px solid var(--main-theme-color);
}

.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;
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



.spin {
    animation-direction: reverse;
    animation: spin 4s infinite linear;
}
.oi {
    cursor: pointer;
}

.table-striped tbody tr:nth-of-type(odd){
    background-color: unset !important;
}
.table td, .table th {
    border-top: unset !important;
    border-bottom: 1px solid #4444;
    padding-top: 0.6rem;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
    padding-bottom: 0.6rem;
    line-height: 2rem;
}

.input-group-text{
    border-radius: unset !important;
    border-right:unset !important;
}*/