:root {
    --secondary-color-iron-80-rgb: 147, 174, 185;
}

/* GENERAL PAGES  */

.content-header {
    padding: 0px .5rem;
}

.content-body {
    width: 100%;
}

.content-card {
    background: var(--background-color-white);
    box-shadow: 0px 0px 16px rgba(53, 104, 141, 0.08);
    border-radius: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* FIN GENERAL PAGES */


/* MAINLAYOUTCOMPONENT  */

/* RIGHT MENU ADVISE  */

.advise {
    background: var(--background-color-white);
    border: 1px solid var(--secondary-color-blue-80);
    box-shadow: 0px 0px 16px rgba(8, 84, 117, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: row;
}

.advise-title {
    background: var(--secondary-color-blue-10);
    display: flex;
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    color: var(--primary-color);
    font-size: 1.4em;
    align-items: center;
    padding: 6px;
}

.advise-body {
    background: #FFFFFF;
    padding: 6px;
    border-radius: 16px;
    font-weight: 500;
    text-align: left;
}

/* FIN RIGHT MENU ADVISE */


/* NAV BAR ICONS */


.nav-flag, .nav-icon {
    padding: .1rem .5rem;
    display: block;
    font-size: 1.7rem;
    color: var(--text-color-dark-100);
    transition: background .1s ease-in-out, color .1s ease-in-out;
    line-height: 1.4;
    text-decoration: none;
}

    .nav-flag:after, .nav-icon:after {
        display: none !important
    }

    .nav-flag.active, .nav-flag:hover, .nav-icon.active, .nav-icon:hover {
        color: var(--secondary-color-blue-80);
    }

    .nav-flag .feather, .nav-flag svg, .nav-icon .feather, .nav-icon svg {
        width: 20px;
        height: 20px
    }

.nav-item {
    display: flex;
    align-items: center;
    color: var(--text-color-white);
}

    .nav-item .indicator {
        background: var(--secondary-color-orange);
        box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .05);
        border-radius: 50%;
        display: block;
        height: 18px;
        width: 18px;
        padding: 1px;
        position: absolute;
        top: 0;
        right: -8px;
        text-align: center;
        transition: top .1s ease-out;
        font-size: .675rem;
        font-weight: 550;
        color: var(--background-color-white)
    }

    .nav-item:hover .indicator {
        top: -4px
    }

    .nav-item a:focus {
        outline: 0
    }

@media (-ms-high-contrast: none), screen and(-ms-high-contrast: active) {
    .navbar .avatar {
        max-height: 47px
    }
}

@media (max-width: 575.98px) {
    .navbar {
        padding: .75rem
    }

    .nav-icon {
        padding: .1rem .75rem
    }

    .dropdown, .dropleft, .dropright, .dropup {
        position: inherit
    }

    .navbar-expand .navbar-nav .dropdown-menu-lg {
        min-width: 100%
    }

    .nav-item .nav-link:after {
        display: none
    }
}

.nav-flag img {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    object-fit: cover
}

/* FIN NAV BAR ICONS */

/* DATA SIDEBAR BEHAVIOR */


[data-simplebar] {
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start
}

    [data-simplebar].simplebar-dragging .simplebar-content {
        pointer-events: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-user-select: none
    }

    [data-simplebar].simplebar-dragging .simplebar-track {
        pointer-events: all
    }


body[data-sidebar-behavior=sticky] .sidebar-content[data-simplebar] {
    height: 100vh;
    top: 0;
    left: 0;
    /* position: fixed; */
}


body[data-sidebar-behavior=compact] .sidebar-badge,
body[data-sidebar-behavior=compact] .sidebar-brand span,
body[data-sidebar-behavior=compact] .sidebar-brand,
body[data-sidebar-behavior=compact] .sidebar-cta,
body[data-sidebar-behavior=compact] .sidebar-header,
body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item .sidebar-link span,
body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item > .sidebar-dropdown,
body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item > .sidebar-link:before {
    display: none
}

body[data-sidebar-behavior=sticky] .sidebar-brand-compact {
    display: none
}


body[data-sidebar-behavior=compact] .simplebar-horizontal, body[data-sidebar-behavior=compact] .simplebar-vertical {
    visibility: hidden !important
}

body[data-sidebar-behavior=compact] .simplebar-content-wrapper, body[data-sidebar-behavior=compact] .simplebar-height-auto-observer-wrapper, body[data-sidebar-behavior=compact] .simplebar-mask, body[data-sidebar-behavior=compact] .simplebar-wrapper {
    overflow: visible !important
}

body[data-sidebar-behavior=compact] .sidebar-dropdown.collapsing {
    transition: none;
    overflow: visible;
    height: auto
}

body[data-sidebar-behavior=compact] .sidebar {
    min-width: 68px;
    max-width: 68px;
    z-index: 1;
}

body[data-sidebar-behavior=compact] .sidebar-item {
    position: relative
}

body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item > .sidebar-dropdown {
    display: none;
    overflow: visible;
    position: absolute;
    z-index: 1;
    width: 220px;
    box-shadow: 0 .5rem 3rem .5rem rgba(0, 0, 0, .05);
    border-radius: .3rem;
    background: var(--background-color-white);
    padding: .5rem 0;
    top: 0
}

    body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item > .sidebar-dropdown:before {
        content: "";
        position: absolute;
        top: 0;
        width: 16px;
        height: 100%
    }

    body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item > .sidebar-dropdown > .sidebar-item .sidebar-link {
        padding: .5rem 1.5rem;
        color: var(--text-color-dark-80);
    }

        body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item > .sidebar-dropdown > .sidebar-item .sidebar-item.active .sidebar-link, body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item > .sidebar-dropdown > .sidebar-item .sidebar-item.active .sidebar-link:hover, body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item > .sidebar-dropdown > .sidebar-item .sidebar-link:hover {
            color: var(--secondary-color-blue-80);
        }

    body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item > .sidebar-dropdown .sidebar-dropdown .sidebar-link {
        padding: .5rem 1.5rem .5rem 2.5rem
    }

    body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item > .sidebar-dropdown .sidebar-dropdown .sidebar-dropdown .sidebar-link {
        padding: .5rem 1.5rem .5rem 3.5rem
    }

body[data-sidebar-behavior=compact] .sidebar .sidebar-dropdown [data-bs-toggle=collapse]:before {
    top: .9rem
}

body[data-sidebar-behavior=compact] .sidebar .sidebar-dropdown [aria-expanded=true]:before, body[data-sidebar-behavior=compact] .sidebar .sidebar-dropdown [data-bs-toggle=collapse]:not(.collapsed):before {
    top: 1.1rem
}

body[data-sidebar-behavior=compact] .sidebar-nav > .sidebar-item:hover > .sidebar-dropdown {
    display: block
}

body[data-sidebar-behavior=compact]:not([data-sidebar-position=right]) .sidebar-nav > .sidebar-item > .sidebar-dropdown {
    left: 80px
}

    body[data-sidebar-behavior=compact]:not([data-sidebar-position=right]) .sidebar-nav > .sidebar-item > .sidebar-dropdown:before {
        left: -16px
    }

body[data-sidebar-behavior=compact]:not([data-sidebar-position=right]) .sidebar.collapsed {
    margin-left: -68px
}

@media (max-width: 991.98px) {
    body[data-sidebar-behavior=compact]:not([data-sidebar-position=right]) .sidebar {
        margin-left: -68px
    }

        body[data-sidebar-behavior=compact]:not([data-sidebar-position=right]) .sidebar.collapsed {
            margin-left: 0
        }
}

body[data-sidebar-behavior=compact][data-sidebar-position=right] .sidebar-nav > .sidebar-item > .sidebar-dropdown {
    right: 80px
}

    body[data-sidebar-behavior=compact][data-sidebar-position=right] .sidebar-nav > .sidebar-item > .sidebar-dropdown:before {
        right: -16px
    }

body[data-sidebar-behavior=compact][data-sidebar-position=right] .sidebar.collapsed {
    margin-right: -68px
}

@media (max-width: 991.98px) {
    body[data-sidebar-behavior=compact][data-sidebar-position=right] .sidebar {
        margin-right: -68px
    }

        body[data-sidebar-behavior=compact][data-sidebar-position=right] .sidebar.collapsed {
            margin-right: 0
        }
}



/* DATA SIDEBAR POSITION */

body:not([data-sidebar-position=right]) .navbar-align {
    margin-left: auto
}

body[data-sidebar-position=right] .navbar-align {
    margin-right: auto
}

body[data-sidebar-position=right] {
    direction: rtl
}

body:not([data-sidebar-position=right]) .sidebar.collapsed {
    margin-left: -260px
}

@media (max-width: 991.98px) {
    body:not([data-sidebar-position=right]) .sidebar {
        margin-left: -260px
    }

        body:not([data-sidebar-position=right]) .sidebar.collapsed, body:not([data-sidebar-position=right]) .sidebar.compact {
            margin-left: 0
        }
}

body:not([data-sidebar-position=right]) .sidebar-toggle {
    margin-right: 1rem
}

body[data-sidebar-position=right] .sidebar.collapsed {
    margin-right: -260px
}

@media (max-width: 991.98px) {
    body[data-sidebar-position=right] .sidebar {
        margin-right: -260px
    }

        body[data-sidebar-position=right] .sidebar.collapsed {
            margin-right: 0
        }
}

body[data-sidebar-position=right] .sidebar-toggle {
    margin-left: 1rem
}

body[data-sidebar-position=right] .simplebar-track.simplebar-vertical {
    left: 0;
    right: auto
}


body[data-sidebar-behavior=compact]:not([data-sidebar-position=right]) .sidebar-nav > .sidebar-item > .sidebar-dropdown {
    left: 80px
}

    body[data-sidebar-behavior=compact]:not([data-sidebar-position=right]) .sidebar-nav > .sidebar-item > .sidebar-dropdown:before {
        left: -16px
    }

body[data-sidebar-behavior=compact]:not([data-sidebar-position=right]) .sidebar.collapsed {
    margin-left: -68px
}

@media (max-width: 991.98px) {
    body[data-sidebar-behavior=compact]:not([data-sidebar-position=right]) .sidebar {
        margin-left: -68px
    }

        body[data-sidebar-behavior=compact]:not([data-sidebar-position=right]) .sidebar.collapsed {
            margin-left: 0
        }
}

body[data-sidebar-behavior=compact][data-sidebar-position=right] .sidebar-nav > .sidebar-item > .sidebar-dropdown {
    right: 80px
}

    body[data-sidebar-behavior=compact][data-sidebar-position=right] .sidebar-nav > .sidebar-item > .sidebar-dropdown:before {
        right: -16px
    }

body[data-sidebar-behavior=compact][data-sidebar-position=right] .sidebar.collapsed {
    margin-right: -68px
}

@media (max-width: 991.98px) {
    body[data-sidebar-behavior=compact][data-sidebar-position=right] .sidebar {
        margin-right: -68px
    }

        body[data-sidebar-behavior=compact][data-sidebar-position=right] .sidebar.collapsed {
            margin-right: 0
        }
}

/* FIN MAINLAYOUTCOMPONENT  */

/* CUSTOM BOOTSTRAP  */

.dropdown-menu {
    flex-direction: column;
    align-items: flex-start;
    background: var(--background-color-white);
    box-shadow: 0px 2px 64px rgba(8, 84, 117, 0.12), 0px 1px 20px rgba(8, 84, 117, 0.12);
    border: unset;
    border-radius: 16px !important;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0 0 0.5rem 0 !important;
    margin-top: 2px !important;
}

.dropdown-menu-header {
    height: 34px;
    display: flex;
    align-items: center;
    /*background: var(--primary-color) !important;*/
    font-size: 1em;
    border-top-left-radius: .5em;
    border-top-right-radius: .5em;
    color: var(--text-color-white);
    font-variation-settings: 'wght' 600;
    font-weight: 600;
    background-color: var(--warning-color-70);
}

.dropdown-menu-header-title {
    padding-left: 0.5em;
    flex: 1;
}

.dropdown-menu-header-close {
    flex: 0;
    min-width: 30px;
}

    .dropdown-menu-header-close a {
        text-decoration: none;
        cursor: pointer;
    }

.dropdown-menu-footer {
    padding: 6px 16px 6px 30px;
    margin-bottom: -8px;
    box-shadow: 0px 0px 16px rgba(8, 84, 117, 0.08);
    border-bottom-left-radius: .5em;
    border-bottom-right-radius: .5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-menu-container {
    /*padding: 0em 1em 1em 1em !important;*/
    padding: 1em;
}

.dropdown-item {
    font-size: 0.975em;
    cursor: pointer;
    color: var(--text-color-70);
}

    .dropdown-item i {
        padding-right: 8px;
        font-size: 1.125em;
        /*color: var(--secondary-color-blue-120);*/
        color: var(--primary-color-120);
    }

    .dropdown-item:hover, .dropdown-item:focus {
        color: var(--text-color-dark-120);
        background-color: var(--secondary-color-iron-20);
        border-radius: 6px;
    }

        .dropdown-item:hover i, .dropdown-item:focus i {
            color: var(--text-color-50);
        }

.dropdown-menu-end[data-bs-popper] {
    right: 10px
}

.dropdown-button-body-text-alert {
    font-size: .75em;
    font-variation-settings: 'wght' 600;
    font-weight: 600;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.card {
    background: var(--background-color-white);
    box-shadow: 0 0 0.875rem 0 rgb(41 48 66 / 5%);
    border: 1.5px solid rgb(var(--secondary-color-iron-80-rgb), 0.5);
}

/* FIN CUSTOM BOOTSTRAP  */


/* TABLE RESPONSIVE */

.table-responsive > :not(caption) > * > * {
    border-bottom-width: 0px;
}

.table > :not(:last-child) > :last-child > * {
    /*border-bottom: 1.5px solid rgb(var(--secondary-color-iron-80-rgb), 0.2);*/
    /*border-bottom-color: rgb(var(--secondary-color-iron-80-rgb), 0.2) !important;*/
    border-bottom: 1.5px solid var(--border-color-110);
    border-bottom-color: var(--border-color-110) !important;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px 16px 0px 0px;
    box-shadow: 0px 0px 16px rgba(53, 104, 141, 0.08);
}

    .table-responsive thead tr th:first-child {
        border-top-left-radius: 6px;
    }

    .table-responsive thead tr th:last-child {
        border-top-right-radius: 6px;
    }

    .table-responsive thead {
        /*background: #F3F7F9;*/
        background: var(--background-color);
        font-variation-settings: 'wght' 600;
        font-weight: 600;
        font-size: 0.825em;
    }

        .table-responsive thead tr {
            /*border-bottom: 1px solid rgb(var(--secondary-color-iron-80-rgb), 0.2);*/
            border-bottom: 1px solid var(--border-color-110);
        }

            .table-responsive thead tr th {
                /*border-left: 1px solid rgb(var(--secondary-color-iron-80-rgb), 0.2);*/
                /*border-right: 1px solid rgb(var(--secondary-color-iron-80-rgb), 0.2);*/
                border-left: 1px solid var(--border-color-110);
                border-right: 1px solid var(--border-color-110);
            }

    .table-responsive tbody {
        font-size: 0.9em;
    }

        .table-responsive thead tr th:first-child,
        .table-responsive tbody tr th:first-child,
        .table-responsive tbody tr td:first-child {
            border-left: none;
            font-size: 0.9em;
        }

        .table-responsive thead tr th:last-child,
        .table-responsive tbody tr th:last-child,
        .table-responsive tbody tr td:last-child {
            border-right: none;
            border-bottom: none;
        }

        .table-responsive tbody tr th,
        .table-responsive tbody tr td {
            /*border: 1px solid rgb(var(--secondary-color-iron-80-rgb), 0.2);*/
            border: 1px solid var(--border-color-110);
            font-weight: 450;
            font-variation-settings: 'wght' 450;
            font-size: .9em;
            vertical-align: middle;
        }

        .table-responsive tbody tr:last-child th,
        .table-responsive tbody tr:last-child td {
            border-bottom: none;
            vertical-align: middle;
        }

.table > :not(caption) > * > * {
    padding: .4rem .4rem !important;
}

.table-responsive > thead tr th.th-20 {
    min-width: 20px;
}

.table-responsive > thead > tr th.th-30 {
    min-width: 30px;
}

.table-responsive thead tr th.th-40 {
    min-width: 40px;
}

.table-responsive thead tr th.th-50 {
    min-width: 50px;
}

.table-responsive thead tr th.th-60 {
    min-width: 60px;
}

.table-responsive thead tr th.th-70 {
    min-width: 70px;
}

.table-responsive thead tr th.th-80 {
    min-width: 80px;
}

.table-responsive thead tr th.th-90 {
    min-width: 90px;
}

.table-responsive thead tr th.th-100 {
    min-width: 100px;
}

.table-responsive thead tr th.th-110 {
    min-width: 110px;
}

.table-responsive thead tr th.th-120 {
    min-width: 120px;
}

.table-responsive thead tr th.th-min-120-max-150 {
    min-width: 120px;
    max-width: 120px;
}

.table-responsive thead tr th.th-130 {
    min-width: 130px;
}

.table-responsive thead tr th.th-140 {
    min-width: 140px;
}

.table-responsive thead tr th.th-150 {
    min-width: 150px;
}

.table-responsive thead tr th.th-160 {
    min-width: 160px;
}

.table-responsive thead tr th.th-170 {
    min-width: 170px;
}

.table-responsive thead tr th.th-180 {
    min-width: 180px;
}

.table-responsive thead tr th.th-190 {
    min-width: 190px;
}

.table-responsive thead tr th.th-200 {
    min-width: 200px;
}

.table-responsive thead tr th.th-210 {
    min-width: 210px;
}

.table-responsive thead tr th.th-220 {
    min-width: 220px;
}

.table-responsive thead tr th.th-230 {
    min-width: 230px;
}

.table-responsive thead tr th.th-240 {
    min-width: 2400px;
}

.table-responsive thead tr th.th-250 {
    min-width: 250px;
}

.tableFixHead {
    overflow-y: auto;
    max-height: 200px;
}

    .tableFixHead thead th {
        position: sticky;
        top: 0;
        z-index: 1;
        background: var(--background-color);
        font-variation-settings: 'wght' 600;
        font-weight: 600;
        font-size: 0.825em;
    }

/* FIN TABLE RESPONSIVE */

/* Cambio en input select */
.select2-container {
    height: auto !important;
}

.input-height {
    min-height: auto !important;
    justify-content: center !important;
}


.icons-styles i {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.icon-color-black i {
    color: var(--text-color);
}

.icons-pointer i {
    cursor: pointer;
}


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

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

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

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

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }
*/

.admin_user_bottons_panel {
    display: flex;
    justify-content: flex-end;
    margin: 1rem 0 1rem 0;
}

    .admin_user_bottons_panel > div > button:nth-child(2) {
        margin-left:1rem;
    }


.modal-client-general {
    display: flex;
    justify-content: center;
    align-items: center;
}
