/* /Pages/Components/common/AddButtonAndSearchBar.razor.rz.scp.css */
@media screen and (max-width: 425px) {
    .add-button-searchbar-container[b-in169ocnoz] {
        flex-direction: column;
        justify-content: center !important;
    }

    [b-in169ocnoz] .searchbar-container {
        width: 100% !important;
    }
}

.add-button-searchbar-container[b-in169ocnoz] {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: .5rem;
    gap: .5rem;
}

[b-in169ocnoz] .searchbar-container {
    margin-left: auto;
}
/* /Pages/Components/common/CommonAddButton.razor.rz.scp.css */
.add-button[b-8a7b4bcm6m] {
    white-space: nowrap !important;
    border: none !important;
}

.add-button i[b-8a7b4bcm6m] {
    margin-right: .3rem;
}
/* /Pages/Components/common/CommonLoadingSpinner.razor.rz.scp.css */
.loading-overlay[b-dd8hqvcyls] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}

    .loading-overlay.hidden[b-dd8hqvcyls] {
        opacity: 0;
        background-color: transparent;
        z-index: -1;
    }

    .loading-overlay.visible[b-dd8hqvcyls] {
        opacity: 1;
        background-color: rgba(255, 255, 255, .75);
        z-index: 999;
    }

@keyframes spin-b-dd8hqvcyls {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-overlay .spinner[b-dd8hqvcyls] {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #63666b;
    height: 55px;
    aspect-ratio: 1;
    animation: spin-b-dd8hqvcyls 2s linear infinite;
}

.loading-overlay .message[b-dd8hqvcyls] {
    font-style: italic;
    text-align: center;
    padding: 0 1rem;
    margin: 0 !important;
}
/* /Pages/Components/common/CommonModal.razor.rz.scp.css */
[b-f7hht83ygs] .form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: .75rem;
}

    [b-f7hht83ygs] .form-field label {
        padding-left: 1.15rem;
        padding-bottom: 2px;
    }

        [b-f7hht83ygs] .form-field label > * {
            padding-left: 4px !important;
        }

    [b-f7hht83ygs] .form-field > * {
        flex: 1;
        max-width: 100%;
    }

[b-f7hht83ygs] .form-field-help {
    margin: .5rem .25rem !important;
}

[b-f7hht83ygs] .form-field-horizontal {
    display: flex;
    flex-direction: row;
    margin-bottom: .75rem;
}

[b-f7hht83ygs] .structure-dropdown-select > div > select {
    margin-bottom: .5rem;
}

[b-f7hht83ygs] .structure-dropdown-select > div > input {
    margin-bottom: .5rem;
}

[b-f7hht83ygs] .structure-type-dropwdown button {
    white-space: normal;
}

[b-f7hht83ygs] .structure-age-selectors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
}

    [b-f7hht83ygs] .structure-age-selectors .form-field {
        margin: 0 !important;
        padding: 0 !important;
        min-width: 150px;
        flex: 1;
    }

        [b-f7hht83ygs] .structure-age-selectors .form-field > label,
        [b-f7hht83ygs] .structure-age-selectors .form-field > div {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

[b-f7hht83ygs] #zone-type-dropwdown button {
    white-space: normal;
}
/* /Pages/Components/common/CommonNavigateButton.razor.rz.scp.css */

[b-aha28admtd] .navigate-btn {
    transition: all .3s ease;
    position: relative;
    display: flex;
    gap: .75rem;
    justify-content: center;
    align-items: center;
}

.navigate-btn:hover .navigate-btn-icon.left[b-aha28admtd] {
    transform: translateX(0%);
    opacity: 1;
}

.navigate-btn:hover .navigate-btn-icon.right[b-aha28admtd] {
    transform: translateX(0%);
    opacity: 1;
}

.navigate-btn:hover .navigate-btn-text.left[b-aha28admtd] {
    margin-left: 25px;
}

.navigate-btn:hover .navigate-btn-text.right[b-aha28admtd] {
    margin-right: 25px;
    margin-left: initial !important;
}

.navigate-btn-icon[b-aha28admtd] {
    top: 0;
    bottom: 5px;
    margin: auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    margin-left: auto;
}

    .navigate-btn-icon.right[b-aha28admtd] {
        position: absolute;
        right: .75rem;
        transform: translateX(5px);
        opacity: 0;
        transition: all .3s ease;
    }

    .navigate-btn-icon.left[b-aha28admtd] {
        position: absolute;
        left: .75rem;
        transform: translateX(-5px);
        opacity: 0;
        transition: all .3s ease;
    }

.navigate-btn-text[b-aha28admtd] {
    transition: all .3s ease;
    margin-left: auto;
}
    .navigate-btn-text.left[b-aha28admtd] {
        margin-left: initial;
    }
    
    .navigate-btn-text.right[b-aha28admtd] {
        margin-left: initial;
    }
/* /Pages/Components/common/CommonSearchBar.razor.rz.scp.css */
.searchbar-container[b-4sa7dblpw0] {
    position: relative;
}

    [b-4sa7dblpw0] .clear-searchbar-btn {
        position: absolute;
        top: 50%;
        right: 3px;
        height: calc(100% - 2px);
        aspect-ratio: 1;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background-color: #fff;
    }
/* /Pages/Components/common/CommonSelectReference.razor.rz.scp.css */
#item-selector-check-box-container[b-ucdvz9zdia] {
    width: 100%;
}

    /* Checkbox */
    [b-ucdvz9zdia] #item-selector-check-box-container > div {
        margin-bottom: .375rem;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
/* /Pages/Components/common/CommonTable.razor.rz.scp.css */
@media screen and (max-width: 768px) {
    .table-title[b-gk0steo3ll] {
        padding: 1rem !important;
        font-size: 1.2rem !important;
        align-self: center !important;
        margin: 1rem !important;
    }

    [b-gk0steo3ll] .table-row-title::after {
        content: "\A";
        white-space: pre;
    }

    [b-gk0steo3ll] .table-row:last-child {
        border-bottom: 1px solid #e0e0e0 !important;
    }
}

.table-container[b-gk0steo3ll] {
    width: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

.table-title[b-gk0steo3ll] {
    word-wrap: anywhere;
    hyphens: auto;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0 0 2rem 1rem;
    margin: 0;
    align-self: flex-start;
}

[b-gk0steo3ll] .table-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

    [b-gk0steo3ll] .table-row:nth-child(even) {
        background-color: #f9f9f9;
    }

    [b-gk0steo3ll] .table-row:nth-child(2) {
        border-top: 1px solid #e0e0e0;
    }

[b-gk0steo3ll] .table-row-title {
    /* white-space: nowrap; */
    word-wrap: break-word;
    font-weight: 600;
}

[b-gk0steo3ll] .table-row-item {
    flex: 1;
    max-width: 100%;
    word-wrap: anywhere;
    hyphens: auto;
}
/* /Pages/Components/common/SingleStructurePage/CommonSingleColumnRow.razor.rz.scp.css */

[b-7nrk25rg8y] .one-col-label {
    min-width: fit-content;
}

[b-7nrk25rg8y] .columns-container {
    width: 100%;
    height: 100%;
    padding: 10px 0px 10px 0px;
    word-wrap: break-word;
    hyphens: auto;
}
/* /Pages/Components/common/SingleStructurePage/CommonTwoColumnRow.razor.rz.scp.css */

[b-1svzzyas72] .two-col-label {
    min-width: fit-content;
}

[b-1svzzyas72] .columns-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding-bottom: 10px;
}

[b-1svzzyas72] .column-container {
    margin-top: 10px;
    width: 50%;
    min-width: min-content;
}
/* /Pages/Components/DeformationZones/DeformationZones.razor.rz.scp.css */

@media (max-width: 575px) {
    /* Hide sibling elements */
    [b-73h7cc8sgz] .datagrid-container table tbody tr td:nth-child(2) ~ td {
        display: none !important;
    }

    /* Hide sibling elements */
    [b-73h7cc8sgz] .datagrid-container table thead tr th:nth-child(2) ~ th {
        display: none !important;
    }

    [b-73h7cc8sgz] .datagrid-container table tbody tr td:nth-child(5) {
        white-space: normal !important;
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Description column of datagrid */
[b-73h7cc8sgz] .datagrid-container table tbody tr td:nth-child(5) {
    hyphens: auto;
    word-wrap: break-word;
    white-space: normal;
    max-width: 450px;
    min-width: 300px;
}
/* /Pages/Components/DeformationZones/SingleDeformationZone.razor.rz.scp.css */
@media screen and (max-width: 768px) {
    .view-container[b-mgcswcearc] {
        width: 100% !important;
        padding: 0 !important;
    }

    [b-mgcswcearc] .structure-details-section {
        padding: 0 0 2rem 0 !important;
    }
}

[b-mgcswcearc] .structure-details-section {
    background-color: white !important;
}

[b-mgcswcearc] .table-section {
    padding: 2rem 0 0 1rem;
    width: 100%;
}

    [b-mgcswcearc] .table-section ul {
        margin: 0;
    }

    [b-mgcswcearc] .table-section > div p {
        margin: 0;
        margin-left: 25px !important;
        font-style: italic;
    }

    [b-mgcswcearc] .table-section h5 {
        font-weight: 700 !important;
    }

[b-mgcswcearc] .references-listing-container > div:first-of-type {
    padding-bottom: 2rem;
}
/* /Pages/Components/Faults/Faults.razor.rz.scp.css */
@media (max-width: 575px) {
    /* Hide sibling elements */
    [b-vx6d7koloa] .datagrid-container table tbody tr td:nth-child(2) ~ td {
        display: none !important;
    }

    /* Hide sibling elements */
    [b-vx6d7koloa] .datagrid-container table thead tr th:nth-child(2) ~ th {
        display: none !important;
    }

    [b-vx6d7koloa] .datagrid-container table tbody tr td:nth-child(5) {
        white-space: normal !important;
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Description column of datagrid */
[b-vx6d7koloa] .datagrid-container table tbody tr td:nth-child(5) {
    hyphens: auto;
    word-wrap: break-word;
    white-space: normal;
    max-width: 450px;
    min-width: 300px;
}
/* /Pages/Components/Faults/SingleFault.razor.rz.scp.css */
@media screen and (max-width: 768px) {
    .view-container[b-neqa22zw9n] {
        width: 100% !important;
        padding: 0 !important;
    }

    [b-neqa22zw9n] .structure-details-section {
        padding: 0 0 2rem 0 !important;
    }
}

[b-neqa22zw9n] .structure-details-section {
    background-color: white !important;
}

[b-neqa22zw9n] .table-section {
    padding: 2rem 0 0 1rem;
    width: 100%;
}

    [b-neqa22zw9n] .table-section ul {
        margin: 0;
    }

    [b-neqa22zw9n] .table-section > div p {
        margin: 0;
        margin-left: 25px !important;
        font-style: italic;
    }

    [b-neqa22zw9n] .table-section h5 {
        font-weight: 700 !important;
    }

[b-neqa22zw9n] .references-listing-container > div:first-of-type {
    padding-bottom: 2rem;
}
/* /Pages/Components/Folds/Folds.razor.rz.scp.css */
@media (max-width: 575px) {
    /* Hide sibling elements */
    [b-mlfru836o7] .datagrid-container table tbody tr td:nth-child(2) ~ td {
        display: none !important;
    }

    /* Hide sibling elements */
    [b-mlfru836o7] .datagrid-container table thead tr th:nth-child(2) ~ th {
        display: none !important;
    }

    [b-mlfru836o7] .datagrid-container table tbody tr td:nth-child(5) {
        white-space: normal !important;
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Description column of datagrid */
[b-mlfru836o7] .datagrid-container table tbody tr td:nth-child(5) {
    hyphens: auto;
    word-wrap: break-word;
    white-space: normal;
    max-width: 450px;
    min-width: 300px;
}
/* /Pages/Components/Folds/SingleFold.razor.rz.scp.css */
@media screen and (max-width: 768px) {
    .view-container[b-dhnqhpmxuo] {
        width: 100% !important;
        padding: 0 !important;
    }

    [b-dhnqhpmxuo] .structure-details-section {
        padding: 0 0 2rem 0 !important;
    }
}

[b-dhnqhpmxuo] .structure-details-section {
    background-color: white !important;
}

[b-dhnqhpmxuo] .table-section {
    padding: 2rem 0 0 1rem;
    width: 100%;
}

    [b-dhnqhpmxuo] .table-section ul {
        margin: 0;
    }

    [b-dhnqhpmxuo] .table-section > div p {
        margin: 0;
        margin-left: 25px !important;
        font-style: italic;
    }

    [b-dhnqhpmxuo] .table-section h5 {
        font-weight: 700 !important;
    }

[b-dhnqhpmxuo] .references-listing-container > div:first-of-type {
    padding-bottom: 2rem;
}
/* /Pages/Components/FoldSystems/FoldSystems.razor.rz.scp.css */
@media (max-width: 575px) {
    /* Hide sibling elements */
    [b-kgm567j3np] .datagrid-container table tbody tr td:nth-child(2) ~ td {
        display: none !important;
    }

    /* Hide sibling elements */
    [b-kgm567j3np] .datagrid-container table thead tr th:nth-child(2) ~ th {
        display: none !important;
    }

    [b-kgm567j3np] .datagrid-container table tbody tr td:nth-child(5) {
        white-space: normal !important;
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Description column of datagrid */
[b-kgm567j3np] .datagrid-container table tbody tr td:nth-child(5) {
    hyphens: auto;
    word-wrap: break-word;
    white-space: normal;
    max-width: 450px;
    min-width: 300px;
}
/* /Pages/Components/FoldSystems/SingleFoldSystem.razor.rz.scp.css */
@media screen and (max-width: 768px) {
    .view-container[b-av4w5i3486] {
        width: 100% !important;
        padding: 0 !important;
    }

    [b-av4w5i3486] .structure-details-section {
        padding: 0 0 2rem 0 !important;
    }
}

[b-av4w5i3486] .structure-details-section {
    background-color: white !important;
}

[b-av4w5i3486] .table-section {
    padding: 2rem 0 0 1rem;
    width: 100%;
}

    [b-av4w5i3486] .table-section ul {
        margin: 0;
    }

    [b-av4w5i3486] .table-section > div p {
        margin: 0;
        margin-left: 25px !important;
        font-style: italic;
    }

    [b-av4w5i3486] .table-section h5 {
        font-weight: 700 !important;
    }

[b-av4w5i3486] .references-listing-container > div:first-of-type {
    padding-bottom: 2rem;
}
/* /Pages/Components/Home/IndexCards.razor.rz.scp.css */

/* Wide screens */
/* From this resolutions the cards are on 1 row (if they fit in the card-wrapper)*/
@media screen and (min-width: 2400px) {

    [b-sxgh1kvkl6] .card-wrapper {
        width: 100% !important;
    }

    [b-sxgh1kvkl6] .card-custom {
        width: calc(16.666% - 20px) !important;
        height: 100% !important;
    }
}

/* Cards are on 2 rows */
@media screen and (max-width: 1340px) {

    [b-sxgh1kvkl6] .card-custom {
        width: calc(50% - 20px) !important;
    }
}

/* Cards are on 2 rows, height scales with viewport height and width */
@media screen and (max-width: 2400px) and (min-height: 1400px) {

    [b-sxgh1kvkl6] .card-custom {
        width: calc(50% - 20px) !important;
        height: calc(100px + 8vh + 2vw) !important;
    }
}

/* For phones (Portrait) and smaller resolutions. 900px so cards wrap nicely */
@media screen and (max-width: 900px), screen and (max-aspect-ratio: 9/16) {

    [b-sxgh1kvkl6] .card-custom .card-img-custom {
        filter: brightness(0.5);
        transform: scale(1.1);
    }

    [b-sxgh1kvkl6] .card-custom .card-title-custom {
        inset: auto auto 50px 35px;
    }

    [b-sxgh1kvkl6] .card-custom .navigate-text {
        transition: opacity 0.2s 0.1s ease;
        opacity: 1;
    }

    [b-sxgh1kvkl6] .card-custom {
        height: 220px !important;
        width: 100% !important;
    }
}

/* Applies when height is over 2000px and if width is under 2399px */
@media screen and (min-height: 2000px) and (max-width: 2399px) {

    [b-sxgh1kvkl6] .card-custom {
        height: calc(50px + 8vh + 2vw) !important;
        width: 80% !important;
    }
}


[b-sxgh1kvkl6] .card-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
    max-width: 1900px;
    margin-right: auto;
    margin-left: auto;
}

[b-sxgh1kvkl6] .card-custom {
    position: relative;
    width: calc(33.333% - 20px);
    min-width: 280px;
    height: calc(100px + 8vh + 2vw);
    border-radius: 15px;
    margin: 10px 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .55);
    cursor: pointer;
}

    [b-sxgh1kvkl6] .card-custom:hover .card-img-custom {
        filter: brightness(0.5);
        transform: scale(1.1);
    }

    [b-sxgh1kvkl6] .card-custom:hover .card-title-custom {
        inset: auto auto 50px 35px;
    }

    [b-sxgh1kvkl6] .card-custom:hover .navigate-text {
        transition: opacity 0.2s 0.1s ease;
        opacity: 1;
    }

[b-sxgh1kvkl6] .card-img-custom {
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.3s ease;
    filter: brightness(0.7);
}

[b-sxgh1kvkl6] .card-title-custom {
    color: #ffffff;
    position: absolute;
    inset: auto auto 30px 35px;
    margin: 0;
    max-width: 80%;
    text-transform: uppercase;
    font-weight: 600;
    user-select: none;
    transition: 0.3s ease;
}

[b-sxgh1kvkl6] .navigate-text {
    position: absolute;
    inset: auto auto 5px 35px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0;
    transition: opacity .2s ease;
}

[b-sxgh1kvkl6] .bi-arrow-right {
    position: absolute;
    margin-left: 5px;
    font-size: 18px;
}
/* /Pages/Components/References/SingleReference.razor.rz.scp.css */
@media screen and (max-width: 768px) {
    .view-container[b-wt93kdoret] {
        width: 100% !important;
        padding: 0 !important;
    }

    [b-wt93kdoret] .reference-details-section {
        padding: 0 0 2rem 0 !important;
    }
}

[b-wt93kdoret] .reference-details-section {
    background-color: white !important;
}

[b-wt93kdoret] .table-section {
    padding: 2rem 0 0 1rem;
    width: 100%;
}

    [b-wt93kdoret] .table-section ul {
        margin: 0;
    }

    [b-wt93kdoret] .table-section > div p {
        margin: 0;
        margin-left: 25px !important;
        font-style: italic;
    }

    [b-wt93kdoret] .table-section h5 {
        font-weight: 700 !important;
    }

[b-wt93kdoret] .references-listing-container > div:first-of-type {
    padding-bottom: 2rem;
}
/* /Pages/Components/Structures/Structures.razor.rz.scp.css */
[b-osnkxx51m6] .searchbar-container {
    margin-bottom: .5rem !important;
}
/* /Pages/Index.razor.rz.scp.css */
@media screen and (max-width: 1150px) {
    .top-section .text-content[b-2qybjtn29s]::before {
        background: none !important;
        background-color: rgba(0, 0, 0, .6) !important;
        width: 100% !important;
    }

    .top-section .text-content[b-2qybjtn29s] {
        padding: 2rem !important;
        width: 100% !important;
    }

        .top-section .text-content > div[b-2qybjtn29s] {
            margin: auto;
        }
}

#welcome-title[b-2qybjtn29s] {
    font-size: calc(2rem + .5vw);
    margin-bottom: 1.5rem;
}

.top-section[b-2qybjtn29s] {
    position: relative;
    margin: auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;

    /* Background colours */
    border-image: linear-gradient(to top right, hsl(359 82% 65% / 0.3), hsl(191 63% 49% / 0.3), hsl(150 21% 60% / .4)) fill 1;
    border-image: linear-gradient(to top right, in lch, hsl(359 82% 65% / 0.3), hsl(191 63% 49% / 0.3), hsl(150 21% 60% / 0.4)) fill 1;
}

    .top-section img[b-2qybjtn29s] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(.65);
    }


    .top-section .text-content[b-2qybjtn29s] {
        display: flex;
        justify-content: flex-end;
        padding: 2rem 0 3rem 8rem;
        width: 55%;
        background: none;
        color: rgba(255, 255, 255, 1);
    }

        .top-section .text-content[b-2qybjtn29s]::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 75%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, .7) 72%, transparent 100%);
            z-index: -1;
        }

        .top-section .text-content > div[b-2qybjtn29s] {
            max-width: 74ch;
        }

        .top-section .text-content p[b-2qybjtn29s] {
            color: rgba(255, 255, 255, .9);
        }
/* /Shared/ContactEmail.razor.rz.scp.css */
.contact-emails-container[b-up845w2y1r] {
    max-width: max-content;
}
/* /Shared/LoginDisplay.razor.rz.scp.css */
div[b-8anqksdb63] {
    max-width: fit-content;
    margin-left: auto;
}

    div a[b-8anqksdb63] {
        display: inline-block;
        width: max-content;
    }

    div span[b-8anqksdb63] {
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 8ch;
    }
/* /Shared/MainLayout.razor.rz.scp.css */
/* Note: Blazorise uses 768px standard resolution media queries for many elements */

@media screen and (max-width: 375px) {
    #header .logo-and-name-container[b-9nzeaveh48] {
        flex-direction: column;
        padding: 0 !important;
    }

        #header .logo-and-name-container .logo-name[b-9nzeaveh48] {
            padding-top: .2rem;
            align-self: baseline;
        }
}

@media (max-width: 575px) {
    [b-9nzeaveh48] .datagrid-container > div:first-of-type > div:nth-child(2) {
        display: none !important;
    }

    [b-9nzeaveh48] .datagrid-container table tbody tr td {
        vertical-align: middle !important;
    }

    [b-9nzeaveh48] .pagination {
        width: 100%;
        column-gap: 10px;
    }

        [b-9nzeaveh48] .pagination li:first-of-type {
            display: none !important;
        }

        [b-9nzeaveh48] .pagination li:nth-last-of-type(2) {
            display: none !important;
        }

        [b-9nzeaveh48] .pagination li:last-of-type {
            display: none !important;
        }

    [b-9nzeaveh48] .add-button-searchbar-container .searchbar-container {
        width: 100% !important;
    }

    #header .header-item:nth-child(1)[b-9nzeaveh48] {
        padding: 1rem 1.5rem !important;
    }

    [b-9nzeaveh48] #header .header-item:nth-child(2) .nav-item {
        padding: 1rem !important;
    }

    #header .logo-and-name-container .logo-img[b-9nzeaveh48] {
        max-width: 6rem;
    }

    #header .logo-and-name-container[b-9nzeaveh48] {
        gap: .75rem;
    }

        #header .logo-and-name-container .logo-name[b-9nzeaveh48] {
            font-size: 1.125rem;
            margin: 0 !important;
            padding: 0 !important;
        }
}

@media screen and (max-width: 992px) {
    [b-9nzeaveh48] .item-selection-section div:nth-child(1) {
        width: 100% !important;
    }

    [b-9nzeaveh48] .item-selection-section > div:nth-child(2) button,
    [b-9nzeaveh48] .item-selection-section .manage-entity-button {
        flex: 1;
        min-width: 175px;
    }

        [b-9nzeaveh48] .item-selection-section .manage-entity-button .navigate-btn {
            width: 100%;
            height: 100%;
        }

            [b-9nzeaveh48] .item-selection-section .manage-entity-button .navigate-btn .navigate-btn-icon {
                transform: translateX(0%);
                opacity: 1 !important;
            }

            [b-9nzeaveh48] .item-selection-section .manage-entity-button .navigate-btn .navigate-btn-text.left {
                margin-left: 25px;
            }

            [b-9nzeaveh48] .item-selection-section .manage-entity-button .navigate-btn .navigate-btn-text.right {
                margin-right: 25px;
                margin-left: unset !important;
            }
}

@media screen and (max-width: 1425px) {
    [b-9nzeaveh48] .view-container {
        width: 95% !important;
    }
    
    #header .lg[b-9nzeaveh48] {
        display: none !important;
    }

    #header .lg-hidden[b-9nzeaveh48] {
        display: flex !important;
    }

    #header[b-9nzeaveh48] {
        flex-direction: column;
        padding: 0 !important;
    }

        #header > *[b-9nzeaveh48] {
            width: 100% !important;
        }

        #header.shrink .header-item:nth-child(2)[b-9nzeaveh48] {
            display: none !important;
        }

        #header .header-item:nth-child(1)[b-9nzeaveh48] {
            padding: 1rem 2rem;
        }

        #header .header-item:nth-child(2)[b-9nzeaveh48] {
            flex-direction: column;
        }

            #header .header-item:nth-child(2) .user-options[b-9nzeaveh48] {
                display: flex !important;
            }

    [b-9nzeaveh48] #header .header-item:nth-child(2) .nav-item {
        position: relative;
        width: 100%;
        font-weight: 600 !important;
        margin: 0 !important;
        padding: 1rem 2rem !important;
        text-decoration: none !important;
        border-bottom: 1px solid hsl(var(--ui-black-60));
    }

        [b-9nzeaveh48] #header .header-item:nth-child(2) .nav-item > .left-block {
            position: absolute;
            top: 50%;
            left: 0;
            background: hsl(var(--ui-blue-highlight));
            height: 100%;
            transform: translate(-100%, -50%);
            width: 7px;
            transition: all .15s ease;
        }

        [b-9nzeaveh48] #header .header-item:nth-child(2) .link-item.active .left-block {
            transform: translate(0%, -50%);
        }
        
        [b-9nzeaveh48] #header .header-item:nth-child(2) .nav-item:hover > .left-block {
            transform: translate(0%, -50%);
        }
}





/* General elements */
.page[b-9nzeaveh48] {
    padding-bottom: 90px; /* Padding to add some spacing because of the culture div */
}

.body-container[b-9nzeaveh48] {
    position: relative;
    width: 100%;
    height: 100%;
}

[b-9nzeaveh48] .view-container {
    margin: 0 auto;
    padding: 3rem 0;
    width: 85%;
    max-width: 1800px;
}

[b-9nzeaveh48] .view-title {
    word-wrap: break-word;
    hyphens: auto;
    margin-bottom: 2rem;
}

[b-9nzeaveh48] .link-item {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

    [b-9nzeaveh48] .link-item.active {
        text-decoration: underline;
        color: hsl(var(--ui-blue-highlight));
    }

    [b-9nzeaveh48] .link-item:hover {
        text-decoration: underline;
    }

#nav-columns-wrapper[b-9nzeaveh48] {
    padding: 20px;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    width: 100%;
    height: fit-content;
    justify-content: space-between;
    align-items: center;
}

[b-9nzeaveh48] .list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin: 0;
    padding: 0;
}

[b-9nzeaveh48] .list-item {
    width: fit-content;
    cursor: pointer;
}

    [b-9nzeaveh48] .list-item a {
        color: hsl(var(--ui-blue-highlight)) !important;
    }

    [b-9nzeaveh48] .list-item:hover a {
        text-decoration: underline;
    }

/*    ::deep .list-item .link-item {
        display: flex;
        align-items: center;
        gap: .25rem;
    }*/

[b-9nzeaveh48] .section-title {
    margin-bottom: 1rem;
}
/* General elements */





/* Index */
[b-9nzeaveh48] .index-container {
    position: relative;
    width: 100%;
}

    [b-9nzeaveh48] .index-container > hr {
        margin: 2rem;
    }
/* Index */





/* Header */
#toggle-header[b-9nzeaveh48] {
    padding: .75rem;
    border: transparent;
    border-radius: 50%;
    aspect-ratio: 1;
    justify-content: center;
    align-items: center;
    background: transparent;
    transition: background-color .3s ease;
    display: none;
}

    #toggle-header i[b-9nzeaveh48] {
        margin-top: -4px;
        color: black;
    }

#header[b-9nzeaveh48] {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: fit-content;
    padding: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
    justify-content: space-between;
    align-items: center;
    background-color: white;
    line-height: 1.5;
}

    #header > *[b-9nzeaveh48] {
        width: 85%;
        max-width: 1800px;
    }

    #header .header-item[b-9nzeaveh48] {
        display: flex;
    }

        #header .header-item:nth-child(1)[b-9nzeaveh48] {
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        #header .header-item:nth-child(2)[b-9nzeaveh48] {
            align-items: baseline;
            flex-wrap: wrap;
            padding-top: .75rem;
        }

            #header .header-item:nth-child(2) .user-options[b-9nzeaveh48] {
                display: none;
                flex-wrap: wrap;
            }

                #header .header-item:nth-child(2) .user-options:first-of-type[b-9nzeaveh48] {
                    justify-content: space-between;
                    background-color: hsl(var(--ui-black-90));
                }

    #header .lg-hidden[b-9nzeaveh48] {
        display: none;
    }

[b-9nzeaveh48] #header .header-item:nth-child(2) .nav-item {
    color: hsl(var(--gtk-primary-gray-bedrock));
    text-decoration: none !important;
    font-weight: 500;
    padding: 1rem .75rem 1rem .25rem;
    overflow: hidden;
}

    [b-9nzeaveh48] #header .header-item:nth-child(2) .link-item.active {
        color: hsl(var(--ui-blue-highlight)) !important;
    }

[b-9nzeaveh48] #header .header-item:nth-child(2) .nav-item > .bottom-stripe {
    background-color: hsl(var(--ui-blue-highlight));
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(0%, 100%);
    transition: all .1s ease;
}

[b-9nzeaveh48] #header .header-item:nth-child(2) .link-item.active .bottom-stripe {
    transform: translate(0%, 0%);
}

[b-9nzeaveh48] #header .header-item:nth-child(2) .nav-item:hover > .bottom-stripe {
    transform: translate(0%, 0%);
}

[b-9nzeaveh48] #header .header-item:nth-child(2) .link-item:not(:first-child) {
    margin-left: .5rem;
}

.logo-and-name-container[b-9nzeaveh48] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.logo-link[b-9nzeaveh48] {
    position: relative;
}

.logo-img[b-9nzeaveh48] {
    max-width: 7rem;
    float: left;
}

.logo-name[b-9nzeaveh48] {
    color: hsl(var(--gtk-primary-gray-bedrock));
    font-size: 1.55rem;
    padding-top: 5px;
    margin-bottom: 0px;
    font-weight: 700;
    user-select: none;
    white-space: nowrap;
}

.user-options-lg[b-9nzeaveh48] {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: fit-content;
    font-size: .8rem;
    font-weight: 500;
    color: inherit;
}

.user-options[b-9nzeaveh48] {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: fit-content;
    font-weight: 500;
    color: inherit;
}

.header-button[b-9nzeaveh48],
#toggle-header[b-9nzeaveh48] {
    background: transparent;
    border: none;
    transition: .15s ease;
    padding: .5rem 1rem;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    border-radius: .125rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
}

    .header-button.active[b-9nzeaveh48] {
        border: 1px solid hsl(var(--ui-blue-highlight)) !important;
    }

    .header-button i[b-9nzeaveh48],
    #toggle-header i[b-9nzeaveh48] {
        font-size: 1.25rem;
        margin: 0;
        padding: 0;
        line-height: normal;
    }

    .header-button:hover[b-9nzeaveh48],
    #toggle-header:hover[b-9nzeaveh48] {
        background-color: hsl(var(--ui-black-80));
    }
/* Header */





/* Click elements and dropdown buttons */
/* Use z-index of 1002 for sibling element that should be visible/interactable */
#language-dropdown-overlay-click-element[b-9nzeaveh48] {
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

    #language-dropdown-overlay-click-element.active[b-9nzeaveh48] {
        display: block;
    }





.dropdown-button[b-9nzeaveh48] {
    position: relative;
}

    .dropdown-button:target .dropdown-menu-container[b-9nzeaveh48] {
        display: flex !important;
    }

    .dropdown-button .dropdown-menu-container *[b-9nzeaveh48] {
        opacity: 0;
        transition: opacity .15s ease;
    }

    .dropdown-button .dropdown-menu-container[b-9nzeaveh48] {
        position: absolute;
        width: 100%;
        z-index: 1002; /* 1 above the clickable overlay sibling element */
        flex-direction: column;
        background-color: white;
        box-shadow: 0px 4px 8px 0px hsla(0, 0%, 0%, .1);
        text-align: center;
        overflow: hidden;
        /* Height transition */
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows .2s ease;
    }

        .dropdown-button .dropdown-menu-container.active[b-9nzeaveh48] {
            grid-template-rows: 1fr;
        }

            .dropdown-button .dropdown-menu-container.active *[b-9nzeaveh48] {
                opacity: 1 !important;
            }

        .dropdown-button .dropdown-menu-container .dropdown-menu-content[b-9nzeaveh48] {
            grid-row: 1 / span 2;
            overflow: hidden;
        }

        .dropdown-button .dropdown-menu-container .dropdown-menu-item[b-9nzeaveh48] {
            width: 100%;
            font-size: 1rem;
            z-index: inherit;
            background: transparent;
            border: none;
            padding: .75rem 1rem;
            border-bottom: 1px solid hsl(var(--ui-black-60));
        }

            .dropdown-button .dropdown-menu-container .dropdown-menu-item:last-child[b-9nzeaveh48] {
                border-bottom: none;
            }

            .dropdown-button .dropdown-menu-container .dropdown-menu-item:hover[b-9nzeaveh48] {
                background-color: hsl(var(--ui-blue-highlight));
                color: white;
            }
/* Click elements and dropdown buttons */





/* Datagrid elements */
[b-9nzeaveh48] .datagrid-container form {
    overflow-x: auto;
    margin-bottom: .5rem;
    scrollbar-width: thin;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

[b-9nzeaveh48] .datagrid,
[b-9nzeaveh48] .datagrid-container table {
    background-color: white;
    margin-bottom: 0;
}

    [b-9nzeaveh48] .datagrid-container table tbody tr td {
        /* vertical-align: middle !important; */
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 250px;
    }

    [b-9nzeaveh48] .datagrid-container table thead tr th {
        border-top: none;
    }

        [b-9nzeaveh48] .datagrid-container table thead tr th:nth-child(1) {
            width: fit-content !important;
        }

    [b-9nzeaveh48] .datagrid-container table tbody tr td:nth-child(1) {
        width: fit-content !important;
    }

        [b-9nzeaveh48] .datagrid-container table tbody tr td:nth-child(1) button {
            width: 38px;
            aspect-ratio: 1;
            padding: 0;
        }

        [b-9nzeaveh48] .datagrid-container table tbody tr td:nth-child(1) div:first-of-type {
            flex-wrap: wrap;
            gap: 5px !important;
        }

[b-9nzeaveh48] .datagrid-container > div:first-of-type {
    align-items: baseline;
}

[b-9nzeaveh48] .pagination {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
}
    /* For some reason there's no border radius for the li-element with text "Last, add some" */
    [b-9nzeaveh48] .pagination li:nth-last-of-type(2) a {
        border-top-right-radius: .25rem;
        border-bottom-right-radius: .25rem;
    }
/* Datagrid elements */





/* Modal styles, also in isolated component CSS */
[b-9nzeaveh48] .form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: .75rem;
}

    [b-9nzeaveh48] .form-field label {
        padding-left: 1.15rem;
        padding-bottom: 2px;
    }

        [b-9nzeaveh48] .form-field label > * {
            padding-left: 4px !important;
        }

    [b-9nzeaveh48] .form-field > * {
        flex: 1;
        max-width: 100%;
    }

[b-9nzeaveh48] .form-field-help {
    margin: .5rem .25rem !important;
}

[b-9nzeaveh48] .form-field-horizontal {
    display: flex;
    flex-direction: row;
    margin-bottom: .75rem;
}

[b-9nzeaveh48] .structure-dropdown-select > div > select {
    margin-bottom: .5rem;
}

[b-9nzeaveh48] .structure-dropdown-select > div > input {
    margin-bottom: .5rem;
}

[b-9nzeaveh48] .structure-type-dropwdown button {
    white-space: normal;
}

[b-9nzeaveh48] .structure-age-selectors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
}

    [b-9nzeaveh48] .structure-age-selectors .form-field {
        margin: 0 !important;
        padding: 0 !important;
        min-width: 150px;
        flex: 1;
    }

        [b-9nzeaveh48] .structure-age-selectors .form-field > label,
        [b-9nzeaveh48] .structure-age-selectors .form-field > div {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

[b-9nzeaveh48] #zone-type-dropwdown button {
    white-space: normal;
}

/* Modal styles, also in isolated component CSS */





/* Item selector, upper section */
[b-9nzeaveh48] .item-selector {
    width: 100%;
}

[b-9nzeaveh48] .selected-items-container {
    background-color: #fafafa;
    margin: .5rem 0;
}

[b-9nzeaveh48] .hint-text-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    [b-9nzeaveh48] .hint-text-wrapper p {
        color: lightgray;
        padding: 0 1rem;
        margin: 0;
        font-weight: bold;
        user-select: none;
        hyphens: auto;
        word-break: break-word;
    }

[b-9nzeaveh48] .selected-items-wrapper {
    height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

[b-9nzeaveh48] .selected-items-header-section > div,
[b-9nzeaveh48] .selected-item > div {
    word-break: break-word;
    hyphens: auto;
    flex: 1;
}

[b-9nzeaveh48] .selected-items-header-section,
[b-9nzeaveh48] .selected-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem calc(.5rem + 2vw);
    font-weight: bold;
    gap: 5px;
}

[b-9nzeaveh48] .selected-item {
    font-weight: normal;
}

    [b-9nzeaveh48] .selected-items-header-section div:last-child,
    [b-9nzeaveh48] .selected-item div:last-child {
        text-align: center;
        flex: .5;
    }

        [b-9nzeaveh48] .selected-item div:last-child button {
            background-color: transparent;
            border: transparent;
        }

[b-9nzeaveh48] .remove-item-icon {
    color: red;
    font-size: 22px;
}
/* Item selector, upper section */

/* Item selector, bottom section */
[b-9nzeaveh48] .item-selector-bottom-section > label {
    font-weight: bold;
    margin: 0;
}

[b-9nzeaveh48] .item-selection-section {
    display: flex;
    padding: .5rem 0 0 0;
    flex: 1;
}

[b-9nzeaveh48] .item-selection-section {
    flex-direction: column;
    gap: .5rem;
}

    [b-9nzeaveh48] .item-selection-section > div {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: inherit;
    }

        [b-9nzeaveh48] .item-selection-section > div:nth-child(1) {
            width: 50%;
        }

[b-9nzeaveh48] #item-selector-check-box-container > div label,
[b-9nzeaveh48] #item-selector-check-box-container > div label::after,
[b-9nzeaveh48] #item-selector-check-box-container > div label::before {
    top: .1rem;
}

[b-9nzeaveh48] #item-selector-check-box-container > div label {
    white-space: nowrap;
    font-size: small;
}

[b-9nzeaveh48] .item-selection-section > div:nth-child(2) {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

    [b-9nzeaveh48] .item-selection-section > div:nth-child(2) button,
    [b-9nzeaveh48] .item-selection-section .manage-structures-button {
        display: flex;
        justify-content: center;
        align-items: center;
        word-wrap: break-word;
        hyphens: auto;
    }

[b-9nzeaveh48] .refresh-dropdown-button {
    border-radius: 50%;
    aspect-ratio: 1;
    font-size: small;
}
/* Item selector, bottom section */
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-0jvhtseol5] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-0jvhtseol5] {
    height: 3.5rem;
    background-color:#636363
}

.navbar-brand[b-0jvhtseol5] {
    font-size: 1.1rem;
    color: #FFFFFF;
}

.oi[b-0jvhtseol5] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-0jvhtseol5] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-0jvhtseol5] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-0jvhtseol5] {
        padding-bottom: 1rem;
    }

    .nav-item[b-0jvhtseol5]  a {
        color: #797b81;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-0jvhtseol5]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: #63656a;
}

.nav-item[b-0jvhtseol5]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #63656a;
}

@media (min-width: 641px) {
    .navbar-toggler[b-0jvhtseol5] {
        display: none;
    }

    .collapse[b-0jvhtseol5] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
