﻿@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;
    height: fit-content;
    margin: 4px 10px;
}

.content {
    /*padding-top: 1.1rem;*/
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.spinner_loader {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

    .spinner_loader image {
        width: 70%;
        color: var(--white);
    }

.full-width {
    width: 100%;
}

.half-width {
    width: 50%
}

.flex-row {
    display: flex;
    flex-direction: row;
}

    .flex-row .space-between {
        justify-content: space-between
    }

    .flex-row .space-evenly {
        justify-content: space-evenly
    }

    .flex-row .end {
        justify-content: end;
    }

.float-right {
    float: right !important;
}

.float-left {
    float: left !important;
}

.btn-main {
    color: white;
    background-color: #2a3042;
    padding: 3px 5px;
    font-size: 1rem;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

/* #region MainLayout */
.base {
    display: none;
}

.page {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #f8f8fb;
}

main {
    flex: 1;
}

.sidebar {
    background: #2a3042;
    position: sticky;
    top: 0;
    overflow-y: scroll;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

    .sidebar::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }

.page-header {
    position: sticky;
    top: 0;
    z-index: 1;
    padding-left: 2rem !important;
    padding-right: 1.5rem !important;
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3%;
    display: flex;
    align-items: center;
}

.page-content {
    min-height: 97%;
    width: 100%;
}

.top-row {
    background-color: white;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row a, .top-row .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row a:hover, .top-row .btn-link:hover {
            text-decoration: underline;
        }

        .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.popup {
    position: fixed;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    background-color: white;
    border-radius: 5px;
    right: 1rem;
    left: auto;
    top: 65px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: red;
    font-weight: 300;
    box-shadow: 6px 6px 20px 0px rgba(0,0,0,0.35);
}

.top-row .right-side .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: rgba(0,0,0,0.7)
}

.top-row button, .first-row button {
    background-color: transparent;
    border: none;
    color: inherit;
    text-align: start;
}

.top-row .right-side img, .first-row .right-side img {
    width: 15%;
}

.top-row .left-side img {
    width: 60%;
}

.top-row .right-side .popup img, .first-row .right-side .popup img {
    margin-right: 5px;
    filter: invert(10%) sepia(97%) saturate(7483%) hue-rotate(0deg) brightness(112%) contrast(105%);
}

.top-row .right-side .popup .administrator {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

@media (max-width: 910px) {

    .nav-hidden {
        display: block;
    }

    .nav-component {
        display: none;
    }
}

@media (min-width: 910px) {
    .nav-hidden {
        display: none;
    }
}

@media (min-width: 781px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        min-height: 100vh;
        height: 100%;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
        display: flex;
        justify-content: space-between;
    }

        .top-row .right-side, .first-row .right-side {
            display: flex;
            flex-direction: row;
            align-items: start;
            font-size: 13px;
            gap: 0.2rem;
            color: rgba(0,0,0,0.7)
        }

    .top-row, article {
        padding-left: 1rem !important;
    }
}

@media (max-width: 780px) {
    .nav-component-collapsed {
        display: flex;
        flex-direction: row;
    }

    .top-row {
        position: fixed;
        right: 0;
        top: 0;
        padding: 1rem 0;
        background-color: transparent;
        color: white;
        border: none;
        color: white;
    }

        .top-row .right-side, .first-row .right-side {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .top-row .left-side {
            display: none;
        }

        .top-row .right-side .text {
            color: white;
        }

        .top-row .right-side img, .first-row .right-side img {
            filter: brightness(0) invert(1);
        }
}

/* #endregion*/

/* #region Navigation-Container */
.navigation-container .oi {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.navigation-container .navigation-header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    width: 14rem;
}

    .navigation-container .navigation-header img {
        width: 100%;
        padding: 0 3rem 0 3rem;
        padding-top: 0.5rem;
    }

.navigation-container .nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .navigation-container .nav-item:first-of-type {
        padding-top: 1rem;
    }

    .navigation-container .nav-item:last-of-type {
        padding-bottom: 1rem;
    }

    .navigation-container .nav-item a {
        color: #fff;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .navigation-container .nav-item a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .navigation-container .nav-item a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

.navigation-container .collapse {
    display: block;
}

/* #endregion*/

/* #region Navigation-Container-Collapsed */

.navigation-container-collapsed .oi {
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.navigation-container-collapsed .navigation-header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    width: 4rem;
}

    .navigation-container-collapsed .navigation-header img {
        width: 100%;
        padding: 0.2rem;
        padding-top: 0.5rem;
    }

.navigation-container-collapsed .nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    /*.nav-item:first-of-type {
    padding-top: 1rem;
}*/

    .navigation-container-collapsed .nav-item a {
        color: #fff;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .navigation-container-collapsed .nav-item a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .navigation-container-collapsed .nav-item a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

.navigation-container-collapsed .collapse {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.navigation-container-collapsed img {
    width: 40%;
}

@media (max-width: 780px) {
    .navigation-container-collapsed {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

        .navigation-container-collapsed .collapse {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
        }

        .navigation-container-collapsed .nav-item {
            padding-bottom: 0;
        }

        .navigation-container-collapsed .oi {
            top: 0;
        }
}
/* #endregion*/

/* #region Slider*/

.switch-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
/* #endregion*/

/* #region Popup*/
.blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
    z-index: 100;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgb(69 69 69 / 70%);
}

    .blur.sidebar, .blur.top-row, .blur.purchaseorder-page {
        pointer-events: none;
    }
/*paddings*/
.pl-10 {
    padding-left: 10px;
}

/*margins*/
.ml-5 {
    margin-left: 5px;
}

/*borders*/
.bt-0 {
    border-top: none;
}

.popup_modal {
    position: fixed;
    z-index: 100000;
    width: 100vw;
    top: 0;
    bottom: 0;
    left: 0;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

    .popup_modal.closed {
        display: none;
    }

    .popup_modal .content {
        min-width: 24em;
        min-height: 12em;
        background-color: #fff;
        padding: 20px;
        border: 2px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 7px;
        border-radius: 8px;
        max-width: 48em;
    }

        .popup_modal .content.info {
            border-color: #4a90e2;
        }

        .popup_modal .content.warning {
            border-color: yellow;
        }

        .popup_modal .content.error {
            border-color: #ff5c56;
        }

        .popup_modal .content.success {
            border-color: #00c38d;
        }


        .popup_modal .content .error-code {
            position: fixed;
            width: inherit;
            display: flex;
            justify-content: flex-end;
            margin-right: -20em;
            margin-top: -15px;
        }

        .popup_modal .content .confirm_button {
            color: white;
            background-color: #2a3042;
            padding: 8px;
            font-size: 1rem;
            margin: 0;
            border: 1px solid rgba(0, 0, 0, 0.3);
            border-radius: 5px;
        }

        .popup_modal .content .error-code .error-code-text {
            color: #ff5c56;
        }

/*#endregion*/

/*#region Table*/
.table {
    font-size: 1rem;
    color: #495057;
}
    .table table {
       width:100%;
    }
    .table thead {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .table tbody {
        border: 1px rgba(0,0,0,0.1);
    }

    .table th {
        padding-left: 10px;
        padding-bottom: 5px;
        border: 1px solid rgba(0,0,0,0.3);
        border-top: 0px black solid;
        border-bottom: 2px solid rgba(0,0,0,0.3);
        text-align: center;
    }

        .table th:first-child {
            padding-left: 10px;
            border-left: 0px;
        }

        .table th:last-child {
            border-right: 0px;
        }

    .table td {
        padding: 8px 5px 8px 15px;
        border-bottom: 1.5px solid rgba(0,0,0,0.3);
        width: 0%;
        text-align: center;
    }

        .table td:first-child {
            padding-left: 20px;
        }

    .table tbody tr:nth-child(odd) {
        background-color: rgba(0,0,0,0.1);
    }

    .table tbody tr.not-active {
        background-color: lightpink;
    }

    .table tr:last-child {
        border-bottom: 1px solid rgba(0,0,0,0);
    }

/*.table tr:last-child td:first-child {
            border-bottom-left-radius: 10px;
        }

        .table tr:last-child td:last-child {
            border-bottom-right-radius: 10px;
        }*/

.pagination-container {
    color: white;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #2a3042;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    border-end-start-radius: 0.4rem;
    border-end-end-radius: 0.4rem;
}

    .pagination-container .count {
        /*color: white;*/
    }

    .pagination-container .navigation {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        padding-right: 1rem;
    }

    .pagination-container button {
        background-color: transparent;
        border: none;
        color: inherit;
        padding: 0.1rem;
    }

    .pagination-container .navigation .page-size select {
        background-color: transparent;
        color: white;
        border: none;
        border-bottom: 0.1rem solid white;
        height: 100%;
    }

    .pagination-container .navigation .page-size option {
        background-color: #2a3042;
        color: white;
        border: none;
        border-bottom: 0.1rem solid white;
    }

.table tfoot td:first-child {
    border-bottom-left-radius: 5px;
    border-bottom: 1px solid rgba(0,0,0,0);
}

.table tfoot td:last-child {
    border-bottom-right-radius: 5px;
    border-bottom: 1px solid rgba(0,0,0,0);
    padding-right: 50px;
}
/*#endregion*/

/*#region BooleanDropdown*/
.dropdown-select-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.2rem;
    font-size: 1rem;
    font-weight: bold;
    /*border-bottom: 0.1rem solid black;*/
    /*border-radius: 0.3rem;*/
    padding: 0 0.3rem 0 0.3rem;
    /*font-weight: bold;*/
}

    .dropdown-select-container span {
        border-bottom: 0.1rem solid black;
    }

    .dropdown-select-container select {
        border: none;
        text-align: center;
    }


/*#endregion*/

/* #region BooleanImage */
.boolean-check img {
    vertical-align: middle;
    width: 1.5rem;
}
/* #endregion*/

/*#region Login*/
.login-page {
    margin-top: 12rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
}

.login-container {
    background-color: white;
    border-radius: 0.2rem;
    width: 25rem;
    box-shadow: 6px 6px 20px 0px rgba(0,0,0,0.35);
}

.login-page .icon {
    margin-top: -1rem;
    margin-left: 1rem;
    /*margin-bottom: 2rem;*/
}

    .login-page .icon img {
        background-color: #2a3042;
        border-radius: 50%;
        padding: 0.5rem;
        width: 4rem;
        height:4rem;
    }

.login-label {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 700;
}

.login-page .greeting-text {
    background-color: #99a2be;
    border-top-right-radius: 0.2rem;
    border-top-left-radius: 0.2rem;
    padding: 1rem;
}

.login-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.3rem;
}

    .login-form input {
        border: 1px solid gray;
        width: 100%;
        border-radius: 0.2rem;
        margin-bottom: 0.5rem;
        padding: 0.4rem;
    }

.password-input {
}

.login-button {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    width: 10rem;
    background-color: #556ee6;
    font-family: sans-serif;
}
/*#endregion*/
/*#regin Table-Container*/
.table-container {
    width: 100%;
    padding: 10px;
}

    .table-container .table {
        display: flex;
        flex-direction: column;
        padding: 20px;
        background-color: white;
        border-radius: 5px;
    }
/*#endregion*/
/*#region List-Page*/
.list-page {
    padding: 10px;
}

    .list-page .edit_details_modal {
        overflow: auto;
        scrollbar-width: thin;
        position: fixed;
        z-index: 1050;
        top: 5%;
        left: 15%;
        max-height: 90%;
        width: 70vw;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
    }

        .list-page .edit_details_modal .content {
            background-color: #fff;
            border: 2px solid transparent;
            align-items: center;
            width: 95%;
            max-height: 90vh;
        }

            .list-page .edit_details_modal .content .header {
                padding: 15px;
                border-bottom: 1px solid lightgray;
            }

            .list-page .edit_details_modal .content .body {
                display: flex;
                flex-direction: column;
                padding: 15px;
                gap: 10px;
                width: 100%;
                max-height: 90vh;
            }

                .list-page .edit_details_modal .content .body label {
                    margin-top: 5px
                }

                .list-page .edit_details_modal .content .body .footer {
                    display: flex;
                    flex-direction: row;
                    align-items: end;
                    justify-content: end;
                    gap: 10px;
                    margin-top: 15px;
                }

                    .list-page .edit_details_modal .content .body .footer .cancel {
                        color: white;
                        background-color: #2a3042;
                        font-size: 1rem;
                        margin: 0;
                        border: 1px solid rgba(0, 0, 0, 0.3);
                        border-radius: 5px;
                        width: 10rem;
                        height: 2rem;
                    }

                    .list-page .edit_details_modal .content .body .footer .save {
                        color: white;
                        background-color: #485ec4;
                        font-size: 1rem;
                        margin: 0;
                        border: 1px solid rgba(0, 0, 0, 0.3);
                        border-radius: 5px;
                        width: 10rem;
                        height: 2rem;
                    }

    .list-page .filters {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        padding: 20px;
        background-color: white;
        border-radius: 5px;
    }

    .list-page .table {
        display: flex;
        flex-direction: column;
        padding: 20px;
        background-color: white;
        border-radius: 5px;
    }

    .list-page .filters .filters-row {
        display: flex;
        flex-direction: row;
        gap: 15px;
        margin-bottom: 5px;
        margin-top: 10px;
    }

@media( max-width: 781px) {
    .list-page .filters .filters-row {
        flex-direction: column;
    }
}

.list-page .filters .filters-row .dropdowns {
    width: 100%;
    display: flex;
    flex-direction: row;
    min-width: 30rem;
    gap: 1rem;
    justify-content: start;
}

@media( max-width: 510px) {
    .list-page .filters .filters-row .dropdowns {
        flex-direction: column;
    }

    .list-page .filters .filters-row .dropdowns {
        min-width: 10rem;
    }

    .dropdown-select-container {
        flex-direction: column;
    }
}

@media (max-width:960px) {
}

.list-page .filters .filters-row .search {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 1rem;
}

.search-button {
    width: 10rem;
    background-color: #2a3042;
    height: 2rem;
}

.filters .search .export-button {
    width: 2rem;
    height: 2rem;
    color: black;
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
}

    .filters .search .export-button:hover {
        background-color: darkgray;
    }

.list-page .filters .filters-row label {
    display: flex;
    justify-content: center;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
}

.list-page .filters .filters-row .filters-input {
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
}

    .list-page .filters .filters-row .filters-input label {
        display: flex;
        justify-content: center;
    }

    .list-page .filters .filters-row .filters-input input {
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        padding: 2px 5px 2px 5px;
    }

.list-page .filters button {
    color: white;
    background-color: #2a3042;
    padding: 3px;
    font-size: 1rem;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}
/*#endregion*/

/*#region Details-Page*/
.details-page {
    padding: 10px;
}

    .details-page .title {
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }

    .details-page .details-container {
        width: 100%;
        background-color: white;
        margin-bottom: 1rem;
        border-radius: 0.5rem;
        display: flex;
        padding: 2rem 3rem 1rem 3rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }

.details-container .section {
    min-width: 12rem;
    width: 50%;
    padding: 0.5rem;
}


.details-container-extra {
    padding: 0.8em;
    width: 100%;
    padding: 0.8em;
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    display: flex;
    padding: 2rem 3rem 1rem 3rem;
}

    .details-container-extra .details-section {
        width: 100%;
        border-right: 0.01rem solid rgba(0,0,0,0.1);
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .details-container-extra .details-section .details-boolean {
            margin-bottom: 10px;
            display: flex;
            gap: 0.5rem;
            align-items: end;
        }

    .details-container-extra div:last-child {
        border: none;
    }

    .details-container-extra .details-section .details-button {
        width: 100%;
        display: flex;
        justify-content: end;
        gap: 1rem;
    }

        .details-container-extra .details-section .details-button button {
            color: white;
            background-color: #2a3042;
            padding: 8px;
            font-size: 1rem;
            margin: 0;
            border: 1px solid rgba(0, 0, 0, 0.3);
            border-radius: 5px;
        }

.details-page .details-buttons {
    display: flex;
    align-items: end;
    justify-content: end;
    width: 100%;
    gap: 1rem;
}

.details-page .details-container .group {
    border-top: 1px solid black;
}

.details-page .details-container .details {
    margin-bottom: 10px;
}

.details-page .details-container .details-boolean {
    margin-bottom: 10px;
    display: flex;
    gap: 0.5rem;
    align-items: end;
}

.details-page .details-container button {
    color: white;
    background-color: #2a3042;
    padding: 8px;
    font-size: 1rem;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    width: 10rem;
}

    .details-page .details-container button.btn-red {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545;
    }

.edit_details_modal {
    overflow: auto;
    scrollbar-width: thin;
    position: fixed;
    z-index: 1050;
    top: 5%;
    left: 15%;
    min-height:50vh;
    max-height: 90%;
    width: 70vw;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

    .edit_details_modal .content {
        background-color: #fff;
        border: 2px solid transparent;
        align-items: center;
        width: 95%;
        max-height: 90vh;
    }

        .edit_details_modal .content .header {
            padding: 15px;
            border-bottom: 1px solid lightgray;
        }

        .edit_details_modal .content .body {
            display: flex;
            flex-direction: column;
            padding: 15px;
            gap: 10px;
            width: 100%;
        }

            .edit_details_modal .content .body form {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }

            .edit_details_modal .content .body .input-container {
                width: 50%;
                padding: 0.5rem;
                min-width: 15rem;
            }

            .edit_details_modal .content .body .switch-container {
                display: flex;
                flex-direction: row;
                width: 100%;
                flex-wrap: wrap;
            }


                .edit_details_modal .content .body .switch-container .input-container-boolean {
                    display: flex;
                    flex-direction: column;
                    padding: 0.5rem;
                    align-items: center;
                }

            .edit_details_modal .content .body .base-Response {
                border-top: 1px solid #ced4da;
                width: 100%;
                flex-wrap: wrap;
                justify-content: center;
                display: flex;
                margin-top: 1rem;
            }

            .edit_details_modal .content .body label {
                margin-top: 5px
            }

            .edit_details_modal .content .body .footer {
                display: flex;
                flex-direction: row;
                align-items: end;
                justify-content: center;
                gap: 2rem;
                margin-top: 2rem;
                margin-bottom: 1rem;
                flex-wrap: wrap;
            }

                .edit_details_modal .content .body .footer .cancel {
                    color: white;
                    background-color: #2a3042;
                    font-size: 1rem;
                    margin: 0;
                    border: 1px solid rgba(0, 0, 0, 0.3);
                    border-radius: 5px;
                    width: 10rem;
                    height: 2rem;
                }

                .edit_details_modal .content .body .footer .save {
                    color: white;
                    background-color: #485ec4;
                    font-size: 1rem;
                    margin: 0;
                    border: 1px solid rgba(0, 0, 0, 0.3);
                    border-radius: 5px;
                    width: 10rem;
                    height: 2rem;
                }

.details-list {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
}

    .details-list .details-container {
        padding: 0.5rem;
    }

    .details-list .group {
        margin-bottom: 3rem;
    }

    .details-list h4, h5 {
        font-weight: bold;
    }

        .details-list h4 a {
            margin-right: 1rem;
        }

.scanned, .tagged {
    margin-top: 15px;
}
/*#endregion*/

/*#region Good*/
.good-page {
    padding: 1.6em;
}

    .good-page .title {
        margin: 0.8em 0 0.5em 0;
    }

    .good-page .article-purchaseorder-details, .good-tag-details {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
        background-color: #fff;
        border-radius: 5px;
    }

    .good-page .good-tag-details {
        margin-bottom: 2em;
    }

    .good-page .good-details {
        background-color: #fff;
        border-radius: 5px;
        padding: 1em;
        margin-bottom: 2em;
    }

    .good-page .article-details, .purchaseorder-details, .good-details, .tag-details {
        padding: 1em;
        width: 50%
    }

        .good-page .good-details .details, .article-details .details, .purchaseorder-details .details, .tag-details .details {
            margin-bottom: 10px;
        }

        .good-page .purchaseorder-details hr, .article-details hr, .good-details hr, .tag-details hr {
            width: 50%;
        }

    .good-page .edit-button {
        display: flex;
        justify-content: center
    }

    .good-page .article-details-button {
        margin-top: 44px;
    }

    .good-page .details-button button {
        color: white;
        background-color: #556ee6;
        padding: 8px;
        font-size: 1rem;
        margin: 0;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }


    .good-page .edit-button button {
        color: white;
        background-color: #2a3042;
        padding: 8px;
        margin-top: 1em;
        font-size: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        width: 20%;
    }

    .good-page .edit_good_modal {
        position: fixed;
        z-index: 1050;
        width: 50vw;
        min-height: 40vh;
        top: 20%;
        left: 25%;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
    }

        .good-page .edit_good_modal .content {
            background-color: #fff;
            border: 2px solid transparent;
            align-items: center;
            width: 95%;
            height: 95%;
        }

            .good-page .edit_good_modal .content .header {
                padding: 15px;
                border-bottom: 1px solid lightgray;
            }

            .good-page .edit_good_modal .content .body {
                display: flex;
                flex-direction: column;
                padding: 15px;
                gap: 10px;
                width: 100%;
                height: 80%;
            }

                .good-page .edit_good_modal .content .body label {
                    margin-top: 5px
                }

                .good-page .edit_good_modal .content .body .footer {
                    display: flex;
                    flex-direction: row;
                    align-items: end;
                    justify-content: end;
                    gap: 10px;
                    margin-top: 15px;
                }

                    .good-page .edit_good_modal .content .body .footer .cancel {
                        color: white;
                        background-color: #2a3042;
                        padding: 8px;
                        font-size: 1rem;
                        margin: 0;
                        border: 1px solid rgba(0, 0, 0, 0.3);
                        border-radius: 5px;
                        width: 5rem
                    }

                    .good-page .edit_good_modal .content .body .footer .save {
                        color: white;
                        background-color: #556ee6;
                        padding: 8px;
                        font-size: 1rem;
                        margin: 0;
                        border: 1px solid rgba(0, 0, 0, 0.3);
                        border-radius: 5px;
                        width: 5rem
                    }
/*#endregion*/

/*#region DateRangePicker*/
.date-input {
    font-size: 1rem;
    color: #495057;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    writing-mode: horizontal-tb !important;
    text-rendering: auto;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    text-align: left;
    appearance: auto;
    cursor: text;
    display: flex;
    padding: 6px 5px 6px 5px;
}

    .date-input span {
        width: 100%;
    }

.date-range-picker {
    width: 100%;
}

.datepicker-icon {
    filter: invert(1);
    height: 1.1em;
}
/*#endregion*/

/*#region Autocomplete*/
.autocomplete {
    position: relative;
}

.autocomplete-list-container {
    max-height: 210px;
    overflow-y: scroll;
    padding: 10px;
    background-color: #fff;
    position: absolute;
    width: calc(100% + 4px);
    left: -3px;
    z-index: 10;
}


.autocomplete-list {
    list-style: none;
}

.autocomplete-option {
    padding: 10px 0;
}

/*#endregion*/

#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."
    }


/*#region Administrator*/
.administrator .table tr:last-child td:first-child {
    border-bottom-left-radius: 0px;
}

.administrator .table tr:last-child td:last-child {
    border-bottom-right-radius: 0px;
}

.administrator h3 {
    display: inline;
}

.administrator .popup {
    right: auto;
    top: 90px;
}

.administrator .right-side {
    font-size: 1rem;
}

.administrator .oi {
    font-size: 1.1rem;
}

.administrator .button {
    padding: 0rem 0.75rem;
    line-height: inherit;
    font-size: 1rem;
}

.administrator .searchInput {
    min-width: 200px;
    width: 300px;
}

.administrator .boolean-input {
    width: 100px;
    padding: 0px 10px;
}

.button.select-cluster {
    padding: 0px 20px;
    top: 0px;
    border: none;
}

.card-body {
    width: 100%;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    border-top: none;
}

.flex-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-right: 12px;
    margin-left: 12px;
    background-color: #f7f7f7;
}

.button {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.administrator .btn-dark {
    color: white;
    background-color: #2a3042;
    padding: 6px 8px;
    font-size: 1rem;
    margin: 4px 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    height: fit-content;
}

.administrator .btn-blue {
    color: #fff;
    background-color: #556ee6;
    padding: 6px 8px;
    font-size: 1rem;
    margin: 4px 10px;
    border: 1px solid #556ee6;
    border-radius: 5px;
    height: fit-content;
}

.administrator .btn-red {
    color: #fff;
    background-color: #dc3545;
    padding: 6px 8px;
    font-size: 1rem;
    margin: 0px 10px;
    border: 1px solid #dc3545;
    border-radius: 5px;
}

.btn-blue {
    color: #fff;
    background-color: #556ee6;
    border-color: #556ee6;
}

.btn-dark-blue {
    color: #fff;
    background-color: #2a3042;
    border-color: #2a3042;
}

.btn-red {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-ternary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.content-row, .nav-tabs, .tab-content {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

    .content-row.first-row {
        margin: 0px 0px 25px 25px;
    }

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    list-style: none;
    width: 100%;
    margin-right: 1rem;
    margin-left: 2rem;
    padding: 0px;
}

.display-centerd {
    display: inline-flex !important;
    align-items: center !important;
}

.form {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

span.form.invalid {
    padding: 0;
    border: none;
}

select.form {
    appearance: auto;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: #dee2e6;
    caption-side: bottom;
    border-collapse: collapse;
}

tfoot {
    background-color: #2a3042;
    color: #ededed;
}

.pagination-content {
    text-align: right;
    padding-right: 50px
}

span.input-like {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 0.25rem;
}

    span.input-like.disabled {
        background-color: rgba(0,0,0,0.1);
    }

/*#endregion*/

/*#region EditModel*/

.details-list {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
}

.new-password, .delete {
    position: absolute;
    left: 32px;
    width: fit-content;
}

/*#endregion*/

/*#region CONFIRMATION_POPUP*/

.confirmation_popup {
    position: fixed;
    z-index: 100000;
    width: 100vw;
    top: 0;
    bottom: 0;
    left: 0;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

    .confirmation_popup .cancel {
        color: white;
        background-color: #2a3042;
        padding: 8px;
        font-size: 1rem;
        margin: 0px 10px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }

    .confirmation_popup .save {
        color: white;
        background-color: #556ee6;
        padding: 8px;
        font-size: 1rem;
        margin: 0px 10px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }

    .confirmation_popup.closed {
        display: none;
    }

    .confirmation_popup .content {
        min-width: 24em;
        min-height: 12em;
        background-color: #fff;
        padding: 20px;
        border: 2px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 7px;
        border-radius: 8px;
        width: auto;
        height: auto;
    }

        .confirmation_popup .content.info {
            border-color: #4a90e2;
        }

/*#endregion*/

/*#region Dropdown*/
.dropdown {
    background-color: #f8f8fb;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
    margin: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

    .dropdown .main_part {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 20px;
        padding-bottom: 0px;
        transition: all 0.3s ease-out;
    }

        .dropdown .main_part .main_part__content {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: baseline;
            width: 100%;
            font-weight: bold;
        }

            .dropdown .main_part .main_part__content.vertical {
                flex-direction: column;
                gap: 15px;
                width: 90%;
            }

        .dropdown .main_part .main_part__dropdown_arrow {
            background-color: transparent;
            border: none;
            transition: all 0.5s ease-out;
        }

            .dropdown .main_part .main_part__dropdown_arrow img {
                transition: all 0.5s ease-out;
                height: 30px;
                margin: -10px 0;
            }

    .dropdown .secondary_part {
        height: 0;
        padding-top: 0px;
        padding-bottom: 0px;
        border-bottom: 1px solid transparent;
        overflow: hidden;
        transition: all 1s ease-out;
    }

        .dropdown .secondary_part > * {
            max-height: 0px;
            padding-top: 0px;
            transition: all 1s ease-out;
        }

        .dropdown .secondary_part .card {
            padding: 1rem;
            margin-bottom: 0.5rem;
        }

            .dropdown .secondary_part .card a {
                position: absolute;
                right: 1rem;
                text-align: end;
            }

        .dropdown .secondary_part.spacing, .dropdown .secondary_part .spacing {
            margin-bottom: 0;
        }

    .dropdown.open {
        border: 2px solid #556ee6;
    }

        .dropdown.open .main_part {
            padding-bottom: 20px;
            border-bottom: 1px solid #fff;
        }

        .dropdown.open .main_part__dropdown_arrow img {
            transform: rotate(180deg);
        }

        .dropdown.open .secondary_part {
            height: auto;
        }

            .dropdown.open .secondary_part > * {
                max-height: 500px;
            }
/*#endregion*/

/*#region COLORS*/
.light-blue {
    filter: invert(45%) sepia(24%) saturate(2052%) hue-rotate(198deg) brightness(92%) contrast(96%);
}

.red {
    filter: invert(39%) sepia(100%) saturate(4340%) hue-rotate(336deg) brightness(90%) contrast(92%);
}

.invert {
    filter: invert(1);
}
/*#endregion*/


.hidden {
    display: none;
}

span.button.btn-ternary.select-cluster.oi.oi-document:hover {
    background-color: darkgray;
}
.name-module-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.nav-link span {
    cursor: pointer;
}

.small-text-mobile {
    font-size: 0.75rem;
}
 