﻿html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
}

a, .btn-link-light {
    color: #d7d7d7;
}

a, .btn-link {
    color: #054b78;
}

.btn-primary {
    background-color: #054b78 !important;
    border-color: #054b78 !important;
}

.btn-outline-primary {
    color: #054b78;
    border-color: #054b78;
}

.btn-document {
    border-width: thin;
    height: 80px;
    width: 150px;
    border-radius: 8px;
    background-color: lightgray;
}

.btn-grid-item {
    font-size:1.2rem;
    cursor: pointer !important;
}

.btn-outline-primary:hover {
    background-color: #054b78;
    border-color: #054b78;
}

.btn-more {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-three-dots-vertical" viewBox="0 0 16 16"><path d="M9.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"/></svg>') center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}

.badge {
    font-size: .8em !important;
}

.btn-more-warning {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="black" class="bi bi-three-dots-vertical" viewBox="0 0 16 16"><path d="M9.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"/></svg>') center/1em auto no-repeat;
}

.form-check-input:checked {
    background-color: #054b78 !important;
    border-color: #054b78 !important;
}

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

    .containerLeft {
    max-width: 600px;
    margin-left: unset
}

/*TITLE*/

.general-title {
    font-size:21px;
}

/*CUSTOM*/

.list-row {
    flex-wrap: wrap;
    display: flex;
    border: 1px solid #d6d5d5;
    background-color: #f7f7f7;
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 1.5rem !important;
    cursor: pointer;
    align-items: center !important;
}

.list-row-col {
    position:unset;
}

.list-row-main {
    font-size: 1.3rem;
    font-weight: bold;
}

.list-row-detail {
    font-size: 0.9rem;
}

.list-row-detail-title {
    font-size: 0.9rem;
    font-weight: bold;
}

.btn-icon {
    padding: 6px 9px;
    border-radius: 2rem;
    height: 36px;
}

.btn-icon-sm {
    padding: 2px 5px;
    border-radius: 2rem;
    height: 28px;
    width: 28px;
}

.page-section {
    border: 1px solid;
    border-radius: .25rem;
    border-color: rgba(0,0,0,.125);
}

.page-section-header {
    background-color: rgba(0,0,0,.03);
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid rgba(0,0,0,.125);
    display: flex;
    justify-content: space-between;
    font-weight:bold;
}

.page-section-content {
    padding-bottom: 1rem;
}

.page-section-header-filter {
    background-color: rgb(0 0 0 / 9%);
}

.page-section-content-filter {
    background-color: rgba(0,0,0,.03);
}

.page-section-action-bar {
    display: grid;
    justify-content: end;
    border-bottom: 1px solid rgba(0,0,0,.125);
    padding-bottom: 5px;
    margin-bottom: 16px;
    padding-top: 5px;
}

.page-section-action-bar-empty {
    margin-bottom: 16px;
}

.modal-max-width {
    max-width: 800px
}

.dropbtn {
    background-color: #d2d2d2;
    color: #0e222d;
    padding: 10px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-item {
    font-size: medium;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: #0e222d;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        margin-left: unset;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
            margin-left: unset;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #dddddd;
    color: black;
}

.search-results-border-top {
    border-top: 1px solid rgba(0,0,0,.125);
}

.search-results-border-bottom {
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.search-results-odd-bg {
    background-color: #a9a6a614;
    border-top: solid 1px rgba(0, 0, 0, 0.125);
    border-bottom: solid 1px rgba(0, 0, 0, 0.125);
}

.search-results-hyperlink {
    font-weight: bold;
    text-decoration: none;
    color: #054b78;
    cursor: pointer;
}

.text-status-active {
    color: #26b050;
}

.text-status-blocked {
    color: red;
}

.text-status-closed {
    color: #808080;
}

.text-status-preparing {
    color: #ffbb00;
}

.fs-7 {
    font-size: 14px;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 99%;
    height: 80vh;
    z-index: 999999;
    top: 0;
}

.loading-container-top {
    height: initial !important;
}

.loading-container .spinner-border {
    border: .3em solid;
    border-color: #b6b4bf #054b78 #054b78;
    width: 70px;
    height: 70px;
}

.loading-container .spinner-border-sm {
    border: .3em solid;
    border-color: #b6b4bf #054b78 #054b78;
    width: 20px;
    height: 20px;
}

/*BREADCRUMB*/


.breadcrumb ul {
    padding-right:16px;
    padding-left:0px;
    padding-bottom:0px;
    list-style: none;
    border-radius:4px;
    margin-bottom:0;
}

.breadcrumb ul li {
    display: inline;
    font-size: 21px;
}

.breadcrumb ul li + li:before {
    padding: 8px;
    color: #212529;
    content: "/\00a0";
}

.breadcrumb ul li a {
    font-size: 21px;
    font-weight: 500;
    color: #054b78;
    text-decoration: none;
}

.breadcrumb ul li a:hover {
    text-decoration: none;
    color: #0A58CA;
    cursor: pointer;
}

.form-signin {
    width: 100%;
    height: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.form-signin .checkbox {
    font-weight: 400;
}

.form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}

.form-signin .form-control:focus {
    z-index: 2;
}

.form-signin input {
    border-radius: 6px;
}

.bd-callout {
    padding: 0.5rem;
    background-color: var(--bd-callout-bg, var(--bs-gray-100));
    border-left: 0.25rem solid var(--bd-callout-border, var(--bs-gray-300));
}

.bd-callout-info {
    --bd-callout-bg: rgba(var(--bs-info-rgb), .075);
    --bd-callout-border: rgba(var(--bs-info-rgb), .5);
}

.bd-callout-warning {
    --bd-callout-bg: rgba(var(--bs-warning-rgb), .075);
    --bd-callout-border: rgba(var(--bs-warning-rgb), .5);
}

.bd-callout-danger {
    --bd-callout-bg: rgba(var(--bs-danger-rgb), .075);
    --bd-callout-border: rgba(var(--bs-danger-rgb), .5);
}

.bd-callout + .bd-callout {
    margin-top: -.25rem;
}

.size-large {
    max-width: 850px !important;
}

.btn[disabled] {
    pointer-events: auto;
}

.customLabelButton {
    background: unset;
    border: none;
    padding: unset;
}

.alert-assignment {
    max-width: fit-content;
}

.partner-background-warning {
    background-color: rgba(102, 77, 3, .15);
}

.partner-background-success {
    background-color: rgba(15, 81, 50, .15);
}

.badge.btn-warning{
    color: unset;
}

.uppercase {
    text-transform: uppercase;
}

@media (max-width: 960px) {
    .table-header {
        display: none;
    }
}

.table-cell {
    display: table-cell;
    padding: 16px;
    font-size: .875rem;
    text-align: start;
    font-weight: 400;
    line-height: 1.43;
    border-bottom: 1px solid var(--mud-palette-table-lines);
    letter-spacing: .01071em;
    vertical-align: inherit;
}

@media (max-width: 960px) {
    .table-cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dotted rgb(222, 226, 230);
        padding: 14px 16px;
        text-align: start !important;
    }
}

@media (max-width: 960px) {
    .table-cell:last-child {
        border-bottom: none;
    }
}

@media (max-width: 960px) {
    .table-cell:before {
        content: attr(data-label);
        font-weight: 600;
        padding-right: 16px;
        padding-inline-end: 16px;
        padding-inline-start: unset;
    }
}

.h90 {
    height: 90px;
}

.comment-placeholder {
    font-style: italic;
    color: darkgray;
}

.comment-header {
    font-size: 12px;
    font-style: italic;
}

.comment-body {
    font-size: 13px;
    background-color: #e9ecef;
    color: rgb(89,89,89);
    text-wrap: pretty;
    font-family: Arial;
    border-radius: 5px;
}

.dropdowntable-disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.taglist-disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.mud-typography-body1 {
    font-size: 0.9rem !important;
}

.mud-table-row-expander {
    padding: 0px !important;
}

.mud-table-cell-custom-group {
    font-weight: 500 !important;
    padding: 0px !important;
}

.mud-table-sticky-header * .mud-table-root .mud-table-head * .mud-table-cell {
    background-color: rgb(0 0 0 / 4%) !important;
}

.statistic-paper {
    background-color: lightgray !important;
}