@import '_content/TheRunway.Shared/TheRunway.Shared.tzx86g8xeb.bundle.scp.css';

/* /Components/Help/Components/NavigationBar.razor.rz.scp.css */
#nav-bar[b-07w4cgzgx7] {
    background-color: #f3f3f3;
    box-shadow: var(--panel-shadow);
    z-index: 100;
}

.nav-links[b-07w4cgzgx7] {
    display: flex;
    flex-direction: row;
}

.navbar-toggler[b-07w4cgzgx7] {
    display: none;
    background: none;
    padding: 0.25rem 0.75rem;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    margin: 5px;
}

.nav-bar-item[b-07w4cgzgx7] {
    cursor: pointer;
}

.nav-bar-item.active[b-07w4cgzgx7] {
    border-bottom: 2px solid var(--primary-color);
}

.nav-bar-link-wrapper[b-07w4cgzgx7] {
    padding: 10px 0 8px 0;
    perspective: 800px;
    display:inline-block;
}

.nav-bar-link-spacer[b-07w4cgzgx7] {
    padding: 0 15px;
    border-right: 1px solid #6c6c6c;
}

#nav-bar > div:last-child .nav-bar-link-spacer[b-07w4cgzgx7] {
    border-right: none;
}

.nav-bar-link-content[b-07w4cgzgx7] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    text-decoration: none;
    font-weight: 500;
    transform: translateZ(0);
    transition: transform .3s ease, text-shadow .3s ease;
}

.nav-bar-item:hover .nav-bar-link-content[b-07w4cgzgx7] {
    transform: translateZ(30px) rotateX(1deg) translateY(-2px);
    text-shadow: 0 10px 4px rgba(0,0,0,.15);
}

[b-07w4cgzgx7].nav-bar-link > i {
    margin-right: 5px;
}

a.nav-bar-link[b-07w4cgzgx7] {
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .navbar-toggler[b-07w4cgzgx7] {
        display: block;
    }

    .nav-links[b-07w4cgzgx7] {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #f3f3f3;
    }

    .nav-links.collapse[b-07w4cgzgx7] {
        display: none;
    }

    .nav-links:not(.collapse)[b-07w4cgzgx7] {
        display: flex;
    }

    .nav-bar-link-spacer[b-07w4cgzgx7] {
        border-right: none !important;
        border-bottom: 1px solid #ddd;
        padding: 10px 15px !important;
    }

    .nav-bar-item.active[b-07w4cgzgx7] {
        border-bottom: none !important;
        border-left: 4px solid var(--primary-color);
        padding-left: 5px;
    }

    .nav-bar-link-wrapper[b-07w4cgzgx7] {
        width: 100%;
        padding: 0;
    }

    .nav-bar-link-content[b-07w4cgzgx7] {
        justify-content: flex-start;
    }

    .nav-bar-item:hover .nav-bar-link-content[b-07w4cgzgx7] {
        transform: none;
        text-shadow: none;
    }
}
/* /Components/Identity/UserWidget.razor.rz.scp.css */
[b-yo9sf71d60] i {
    font-weight: 500;
    cursor: pointer;
}

[data-initials][b-yo9sf71d60]:before {
    background: var(--primary-color);
    color: var(--primary-text-color);
    opacity: 1;
    content: attr(data-initials);
    display: inline-block;
    font-weight: bold;
    border-radius: 50%;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 1em;
    line-height: 30px;
}

#user-widget[b-yo9sf71d60] {
    position: relative;
    z-index: 2;
}

#user-widget[aria-menu-state="initial"][b-yo9sf71d60] {
    border-radius: 21px;
}

#user-widget[aria-menu-state="closed"][b-yo9sf71d60] {
    animation: menuClosing-b-yo9sf71d60 0.2s ease-in-out;
    border-radius: 21px;
}

#user-widget[aria-menu-state="open"][b-yo9sf71d60] {
    animation: menuOpening-b-yo9sf71d60 0.25s ease-in-out;
    border-radius: 21px 21px 0 0;
}

@keyframes menuOpening-b-yo9sf71d60 {
    from {
        border-radius: 21px;
    }
    to {
        border-radius: 21px 21px 0 0;
    }
}

@keyframes menuClosing-b-yo9sf71d60 {
    from {
        border-radius: 21px 21px 0 0;
    }
    to {
        border-radius: 21px;
    }
}

#profile-icon[b-yo9sf71d60] {
    padding: 5px;
}

#initial[b-yo9sf71d60] {
    cursor: pointer;
}

#profile-menu[b-yo9sf71d60] {
    position: absolute;
    top: 110%;
    right: -1px;
    min-width: 100.8%;
    border-radius: 0 0 10px 10px;
    background: white;
    box-shadow: var(--menu-shadow);
    scrollbar-width: none;
    z-index: 1001;
}

#profile-menu.profile-menu-wide[b-yo9sf71d60] {
    border-radius: 10px 0 10px 10px;
}

#profile-menu[aria-menu-state="initial"][b-yo9sf71d60] {
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
}

#profile-menu[aria-menu-state="open"][b-yo9sf71d60] {
    animation: openMenu-b-yo9sf71d60 0.25s ease-in-out;
    max-height: 50px;
    overflow: auto;
    visibility: visible;
}

#profile-menu[aria-menu-state="closed"][b-yo9sf71d60] {
    animation: closeMenu-b-yo9sf71d60 0.1s ease-in-out;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
}

@keyframes openMenu-b-yo9sf71d60 {
    from {
        max-height: 0;
        visibility: hidden;
    }
    to {
        max-height: 50px;
        visibility: visible;
    }
}

@keyframes closeMenu-b-yo9sf71d60 {
    from {
        max-height: 50px;
        overflow: auto;
        visibility: visible;
    }
    to {
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
    }
}

#profile-menu > div[b-yo9sf71d60] {
    text-wrap: nowrap;
    width: auto;
    cursor: pointer;
    padding: 10px;
}

#profile-menu > div:not(:first-child)[b-yo9sf71d60] {
    border-top: 1px solid var(--rz-primary-lighter);
}

#profile-menu > div:hover[b-yo9sf71d60] {
    background-color: var(--rz-primary-lighter);
    color: var(--primary-color);
}

#admin-icon[b-yo9sf71d60],
#dashboard-icon[b-yo9sf71d60],
#form-builder-icon[b-yo9sf71d60] {
  line-height: 0;
  padding: 5px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);

    a i, img {
        font-size: 30px;
        color: var(--primary-color);
    }
    
    svg[b-yo9sf71d60] {
        width: 30px;
        height: 30px;
        fill: var(--primary-color);
    }
}

#user-widget:has(> #admin-icon) #profile-icon[b-yo9sf71d60], #user-widget:has(> #dashboard-icon) #profile-icon[b-yo9sf71d60], #user-widget:has(> #form-builder-icon) #profile-icon[b-yo9sf71d60] {
    padding: 5px 15px;
}
/* /Components/Layout/HelpLayout.razor.rz.scp.css */
.page[b-ltipwzvx8h] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 100%;
}

div.main[b-ltipwzvx8h] {
    padding: 0;
    flex-grow: 1;
    min-height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

div.content[b-ltipwzvx8h] {
    background-image: url("img/background.jpg");
    background-repeat: repeat-y;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 25px 35px;
    flex-grow: 1;
}

main:has(::deep div#env-bar) ~ div.main[b-ltipwzvx8h] {
    margin-top: 23px;
}

#blazor-error-ui[b-ltipwzvx8h] {
    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[b-ltipwzvx8h] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.help-container[b-ltipwzvx8h] {
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ntsujzkug7] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 100%;
}

div.main[b-ntsujzkug7] {
    padding: 0;
    flex-grow: 1;
    min-height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

div.content[b-ntsujzkug7] {
    background-image: url("img/background.jpg");
    background-repeat: repeat-y;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 25px 35px;
    flex-grow: 1;
}

main:has(::deep div#env-bar) ~ div.main[b-ntsujzkug7] {
    margin-top: 23px;
}

#blazor-error-ui[b-ntsujzkug7] {
    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[b-ntsujzkug7] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/RunwayHeader.razor.rz.scp.css */
.header[b-essruywjtm] {
    max-width: 100%;
    min-height: 137px;
    max-height: 137px;
    background-image: url("img/runway-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 50px;
    overflow: visible;
    margin: -1px;
    z-index: 1001; /* 1 more than the scoped dialog host */
}

.tagline[b-essruywjtm] {
    margin-right: 20px;
    margin-left: 20px;
    color: white;
    font-size: min(3vw, 48px);
    opacity: 60%;
}

.extra-padding[b-essruywjtm] {
    /*margin-top: 16px;*/
}

a#home-link[b-essruywjtm] {
    width: clamp(300px, 21vw, 465px);
    height: auto;
}

a#home-link > img[b-essruywjtm] {
    width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    .logo[b-essruywjtm] {
        width: 40vw;
    }
    
    .header[b-essruywjtm] {
        padding: 0 10px;
    }
}
/* /Components/Management/AdminActivityLog.razor.rz.scp.css */
.additional-details-panel[b-8iuvk3mfb6] {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    margin: 0; 
}

.additional-details-header[b-8iuvk3mfb6] {
    font-weight: 600;
    padding-bottom: 6px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.additional-details-list[b-8iuvk3mfb6] {
    font-size: 0.875rem;
}

.additional-details-row[b-8iuvk3mfb6] {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    padding: 2px 0;
}

.additional-details-label[b-8iuvk3mfb6] {
    font-weight: 600;
    margin-right: 4px;
}

.additional-details-value[b-8iuvk3mfb6] {
    font-weight: 600;
    margin-right: 4px;
}

.additional-details-name-value[b-8iuvk3mfb6],
.additional-details-from-value[b-8iuvk3mfb6],
.additional-details-to-value[b-8iuvk3mfb6] {
    min-width: auto;
}

.additional-details-row .additional-details-name-col[colspan][b-8iuvk3mfb6],
.additional-details-row .additional-details-name-col.sensitive-span[b-8iuvk3mfb6] {
    flex: 1 1 auto;
}
/* /Components/Management/AttachmentConfiguration.razor.rz.scp.css */
[b-v3h601pfbq] .file-type-list {
    max-height: 40vh;
    overflow-y: scroll;
}

[b-v3h601pfbq] .button-fit {
    display: flex;
    justify-content: flex-end;
    width: fit-content;
    margin-left: auto;
}
/* /Components/Management/BaseAddressInstructions.razor.rz.scp.css */
.chrome-tabs[b-fihrdhbb8t] {
    box-sizing: border-box;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 13px;
    height: 46px;
    padding: 8px 3px 4px 3px;
    background: #dee1e6;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    font-weight: 500;
}
.chrome-tabs *[b-fihrdhbb8t] {
    box-sizing: inherit;
    font: inherit;
}
.chrome-tabs .chrome-tabs-content[b-fihrdhbb8t] {
    position: relative;
    width: 100%;
    height: 100%;
}
.chrome-tabs .chrome-tab[b-fihrdhbb8t] {
    position: absolute;
    left: 0;
    height: 36px;
    width: 240px;
    border: 0;
    margin: 0;
    z-index: 1;
    pointer-events: none;
}
.chrome-tabs .chrome-tab[b-fihrdhbb8t],
.chrome-tabs .chrome-tab *[b-fihrdhbb8t] {
    user-select: none;
    cursor: pointer;
}
.chrome-tabs .chrome-tab .chrome-tab-dividers[b-fihrdhbb8t] {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 9px;
    right: 9px;
}
.chrome-tabs .chrome-tab .chrome-tab-dividers[b-fihrdhbb8t],
.chrome-tabs .chrome-tab .chrome-tab-dividers[b-fihrdhbb8t]::before,
.chrome-tabs .chrome-tab .chrome-tab-dividers[b-fihrdhbb8t]::after {
    pointer-events: none;
}
.chrome-tabs .chrome-tab .chrome-tab-dividers[b-fihrdhbb8t]::before,
.chrome-tabs .chrome-tab .chrome-tab-dividers[b-fihrdhbb8t]::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #a9adb0;
    opacity: 1;
    transition: opacity 0.2s ease;
}
.chrome-tabs .chrome-tab .chrome-tab-dividers[b-fihrdhbb8t]::before {
    left: 0;
}
.chrome-tabs .chrome-tab .chrome-tab-dividers[b-fihrdhbb8t]::after {
    right: 0;
}
.chrome-tabs .chrome-tab:first-child .chrome-tab-dividers[b-fihrdhbb8t]::before,
.chrome-tabs .chrome-tab:last-child .chrome-tab-dividers[b-fihrdhbb8t]::after {
    opacity: 0;
}
.chrome-tabs .chrome-tab .chrome-tab-background[b-fihrdhbb8t] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.chrome-tabs .chrome-tab .chrome-tab-background > svg[b-fihrdhbb8t] {
    width: 100%;
    height: 100%;
}
.chrome-tabs .chrome-tab .chrome-tab-background > svg .chrome-tab-geometry[b-fihrdhbb8t] {
    fill: #f4f5f6;
}
.chrome-tabs .chrome-tab[active][b-fihrdhbb8t] {
    z-index: 5;
}
.chrome-tabs .chrome-tab[active] .chrome-tab-background > svg .chrome-tab-geometry[b-fihrdhbb8t] {
    fill: #fff;
}
.chrome-tabs .chrome-tab:not([active]) .chrome-tab-background[b-fihrdhbb8t] {
    transition: opacity 0.2s ease;
    opacity: 0;
}
@media (hover: hover) {
    .chrome-tabs .chrome-tab:not([active]):hover[b-fihrdhbb8t] {
        z-index: 2;
    }
    .chrome-tabs .chrome-tab:not([active]):hover .chrome-tab-background[b-fihrdhbb8t] {
        opacity: 1;
    }
}
.chrome-tabs .chrome-tab.chrome-tab-was-just-added[b-fihrdhbb8t] {
    top: 10px;
    animation: chrome-tab-was-just-added-b-fihrdhbb8t 120ms forwards ease-in-out;
}
.chrome-tabs .chrome-tab .chrome-tab-content[b-fihrdhbb8t] {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    left: 9px;
    right: 9px;
    padding: 9px 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    pointer-events: all;
}
.chrome-tabs .chrome-tab[is-mini] .chrome-tab-content[b-fihrdhbb8t] {
    padding-left: 2px;
    padding-right: 2px;
}
.chrome-tabs .chrome-tab .chrome-tab-favicon[b-fihrdhbb8t] {
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    height: 16px;
    width: 16px;
    background-size: 16px;
    margin-left: 4px;
}
.chrome-tabs .chrome-tab[is-small] .chrome-tab-favicon[b-fihrdhbb8t] {
    margin-left: 0;
}
.chrome-tabs .chrome-tab[is-mini]:not([active]) .chrome-tab-favicon[b-fihrdhbb8t] {
    margin-left: auto;
    margin-right: auto;
}
.chrome-tabs .chrome-tab[is-mini][active] .chrome-tab-favicon[b-fihrdhbb8t] {
    display: none;
}
.chrome-tabs .chrome-tab .chrome-tab-title[b-fihrdhbb8t] {
    flex: 1;
    vertical-align: top;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 4px;
    color: #5f6368;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 24px), transparent);
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 24px), transparent);
}
.chrome-tabs .chrome-tab[is-small] .chrome-tab-title[b-fihrdhbb8t] {
    margin-left: 0;
}
.chrome-tabs .chrome-tab .chrome-tab-favicon + .chrome-tab-title[b-fihrdhbb8t],
.chrome-tabs .chrome-tab[is-small] .chrome-tab-favicon + .chrome-tab-title[b-fihrdhbb8t] {
    margin-left: 8px;
}
.chrome-tabs .chrome-tab[is-smaller] .chrome-tab-favicon + .chrome-tab-title[b-fihrdhbb8t],
.chrome-tabs .chrome-tab[is-mini] .chrome-tab-title[b-fihrdhbb8t] {
    display: none;
}
.chrome-tabs .chrome-tab[active] .chrome-tab-title[b-fihrdhbb8t] {
    color: #45474a;
}
.chrome-tabs .chrome-tab .chrome-tab-drag-handle[b-fihrdhbb8t] {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.chrome-tabs .chrome-tab .chrome-tab-close[b-fihrdhbb8t] {
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}
@media (hover: hover) {
    .chrome-tabs .chrome-tab .chrome-tab-close:hover[b-fihrdhbb8t] {
        background-color: #e8eaed;
    }
    .chrome-tabs .chrome-tab .chrome-tab-close:hover:active[b-fihrdhbb8t] {
        background-color: #dadce0;
    }
}
@media not all and (hover: hover) {
    .chrome-tabs .chrome-tab .chrome-tab-close:active[b-fihrdhbb8t] {
        background-color: #dadce0;
    }
}
@media (hover: hover) {
    .chrome-tabs .chrome-tab:not([active]) .chrome-tab-close:not(:hover):not(:active)[b-fihrdhbb8t] {
        opacity: 0.8;
    }
}
.chrome-tabs .chrome-tab[is-smaller] .chrome-tab-close[b-fihrdhbb8t] {
    margin-left: auto;
}
.chrome-tabs .chrome-tab[is-mini]:not([active]) .chrome-tab-close[b-fihrdhbb8t] {
    display: none;
}
.chrome-tabs .chrome-tab[is-mini][active] .chrome-tab-close[b-fihrdhbb8t] {
    margin-left: auto;
    margin-right: auto;
}
@-moz-keyframes chrome-tab-was-just-added {
    to {
        top: 0;
    }
}
@-webkit-keyframes chrome-tab-was-just-added {
    to {
        top: 0;
    }
}
@-o-keyframes chrome-tab-was-just-added {
    to {
        top: 0;
    }
}
@keyframes chrome-tab-was-just-added-b-fihrdhbb8t {
    to {
        top: 0;
    }
}
.chrome-tabs.chrome-tabs-is-sorting .chrome-tab:not(.chrome-tab-is-dragging)[b-fihrdhbb8t],
.chrome-tabs:not(.chrome-tabs-is-sorting) .chrome-tab.chrome-tab-was-just-dragged[b-fihrdhbb8t] {
    transition: transform 120ms ease-in-out;
}
.chrome-tabs .chrome-tabs-bottom-bar[b-fihrdhbb8t] {
    position: absolute;
    bottom: 0;
    height: 4px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10;
}
.chrome-tabs-optional-shadow-below-bottom-bar[b-fihrdhbb8t] {
    position: relative;
    height: 1px;
    width: 100%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1' height='1' viewBox='0 0 1 1'><rect x='0' y='0' width='1' height='1' fill='rgba(0, 0, 0, .17)'></rect></svg>");
    background-size: 1px 1px;
    background-repeat: repeat-x;
    background-position: 0% 0%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .chrome-tabs-optional-shadow-below-bottom-bar[b-fihrdhbb8t] {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2' height='2' viewBox='0 0 2 2'><rect x='0' y='0' width='2' height='1' fill='rgba(0, 0, 0, .27)'></rect></svg>");
    }
}

.mock-toolbar[b-fihrdhbb8t] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    height: 40px;
    background-color: #fff;
    border-bottom: 1px solid #e8eaed;
    gap: 10px;
    font-size: 1.1em;
}

.mock-search-box[b-fihrdhbb8t] {
    flex-grow: 1;
    border: 2px solid var(--primary-color);
    height: 75%;
    border-radius: 20px;
    padding-left: 10px;
    align-content: center;
    font-weight: 500;

    .mock-search-box-highlight {
        background-color: yellow;
        border: 1px solid darkgoldenrod;
        margin: 2px;
        border-radius: 3px;
        padding: 1px;
    }
}

.instructions[b-fihrdhbb8t] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    gap: 10px;
    font-size: 1.2em;
}
/* /Components/Management/CredentialManager.razor.rz.scp.css */
[b-usui5am6ch] .rz-message-popup {
    position: fixed;
}
/* /Components/Management/EnvironmentManager.razor.rz.scp.css */
/* /Components/Management/ErrorQueueStatusWidget.razor.rz.scp.css */
#error-queue-status-widget-wrapper[b-4mrzhv0yds] {
    position: absolute;
    top: 73px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#error-queue-status-widget[b-4mrzhv0yds] {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    align-content: center;
    border-radius: 5px;
    padding: 0;
    margin: 0;
    background-color: var(--primary-color);
    
    & > div {
        padding: 10px;
        color: white;
        cursor: default !important;
    }
    
    & > div:last-child[b-4mrzhv0yds] {
        border-radius: 0 5px 5px 0;
        min-width: 50px;
        text-align: center;
    }
    
    & > div.empty[b-4mrzhv0yds] {
        background-color: var(--rz-success);
    }

    & > div.queue-error[b-4mrzhv0yds] {
        background-color: var(--rz-danger);
        font-weight: 500;
        font-family: Consolas, monospace;
        font-size: 1.4em;
        padding: 5px;
    }
}

#error-queue-tooltip[b-4mrzhv0yds] {
    background-color: #464646;
    color: white;
    font-family: Consolas, monospace;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.8em;
    
    &.hidden {
        display: none;
        visibility: hidden;
    }
}
/* /Components/Management/FeatureFlags.razor.rz.scp.css */
[b-wvuwchlrse] .feature-groups {
    margin-top: 25px;
    margin-bottom: 25px;
}

[b-wvuwchlrse] .feature-group-display-names {
    border-bottom: 1px solid lightgrey;
    padding-bottom: 5px;
    color: lightgrey;
}

[b-wvuwchlrse] .feature-flags {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 50px;
    margin-left: 50px;
}

[b-wvuwchlrse] .feature-flag-descriptions {
    border-bottom: 1px solid lightgrey;
    padding-bottom: 5px;
}
/* /Components/Management/FlightPlanConfiguration.razor.rz.scp.css */
.line[b-wjjyeb6rws] {
    height: 1px;
    min-width: 10px;
    flex-shrink: 1;
    border-top: 1px solid gray;
    position: relative;
    top: 41px;
}
/* /Components/Management/FlightPlanContacts.razor.rz.scp.css */
.line[b-82zgi1nlje] {
    height: 1px;
    min-width: 10px;
    flex-shrink: 1;
    border-top: 1px solid gray;
    position: relative;
    top: 41px;
}
/* /Components/Management/HealthCheck.razor.rz.scp.css */
div[b-8hxfc908fe] {
    padding: 10px;
}

div.middle[b-8hxfc908fe] {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 3px;
    
    > div {
        padding: 7px;
    }
}

div.loading[b-8hxfc908fe] {
    padding: 0;
}
/* /Components/Management/LoggingSystems.razor.rz.scp.css */
div.message[b-nw1vuzeobp] {
    flex-grow: 1;
    align-content: center;
    color: darkorange;
    font-style: italic;
    font-size: .85rem;
}

[b-nw1vuzeobp] .label-stack {
    height: 40px;
    border: var(--rz-input-border);
    border-radius: var(--rz-input-border-radius);
    padding-block: var(--rz-input-padding-block);
    padding-inline: var(--rz-input-padding-inline);
}

[b-nw1vuzeobp] .label-stack.disabled {
    color: var(--rz-input-disabled-color);
}

[b-nw1vuzeobp] .label-stack:hover {
    border-color: var(--rz-input-border-hover);
}

[b-nw1vuzeobp] .label-text {
    vertical-align: middle;
    align-content: center;
}
/* /Components/Management/OutboundEmailConfiguration.razor.rz.scp.css */
div.message[b-dfnykfjuo2] {
    flex-grow: 1;
    align-content: center;
    color: darkorange;
    font-style: italic;
    font-size: .85rem;
}

[b-dfnykfjuo2] .label-stack {
    height: 40px;
    border: var(--rz-input-border);
    border-radius: var(--rz-input-border-radius);
    padding-block: var(--rz-input-padding-block);
    padding-inline: var(--rz-input-padding-inline);
}

[b-dfnykfjuo2] .label-stack.disabled {
    color: var(--rz-input-disabled-color);
}

[b-dfnykfjuo2] .label-stack:hover {
    border-color: var(--rz-input-border-hover);
}

[b-dfnykfjuo2] .label-text {
    vertical-align: middle;
    align-content: center;
}
/* /Components/Management/PiiConfiguration.razor.rz.scp.css */
div.message[b-ameoxuwlw4] {
    flex-grow: 1;
    align-content: center;
    color: darkorange;
    font-style: italic;
    font-size: .85rem;
}

[b-ameoxuwlw4] .label-stack {
    height: 40px;
    border: var(--rz-input-border);
    border-radius: var(--rz-input-border-radius);
    padding-block: var(--rz-input-padding-block);
    padding-inline: var(--rz-input-padding-inline);
}

[b-ameoxuwlw4] .label-stack.disabled {
    color: var(--rz-input-disabled-color);
}

[b-ameoxuwlw4] .label-stack:hover {
    border-color: var(--rz-input-border-hover);
}

[b-ameoxuwlw4] .label-text {
    vertical-align: middle;
    align-content: center;
}
/* /Components/Management/PreflightConfiguration.razor.rz.scp.css */
.line[b-xwowyaehlb] {
    height: 1px;
    min-width: 20px;
    flex-shrink: 1;
    border-top: 1px solid gray;
    position: relative;
    top: 41px;
}
/* /Components/Management/QueueingConfiguration.razor.rz.scp.css */
div.message[b-6fmsda824w] {
    flex-grow: 1;
    align-content: center;
    color: darkorange;
    font-style: italic;
    font-size: .85rem;
}

[b-6fmsda824w] .label-stack {
    height: 40px;
    border: var(--rz-input-border);
    border-radius: var(--rz-input-border-radius);
    padding-block: var(--rz-input-padding-block);
    padding-inline: var(--rz-input-padding-inline);
}

[b-6fmsda824w] .label-stack.disabled {
    color: var(--rz-input-disabled-color);
}

[b-6fmsda824w] .label-stack:hover {
    border-color: var(--rz-input-border-hover);
}

[b-6fmsda824w] .label-text {
    vertical-align: middle;
    align-content: center;
}

.relative[b-6fmsda824w] {
    position: relative;
}

.q-load-failure[b-6fmsda824w] {
    position: absolute;
    top: 70px;
    right: 20px;
    font-weight: 500;
}
/* /Components/Management/StatusPage.razor.rz.scp.css */
/* Grid container: 3 equal-width columns */
.status-grid[b-ck0o0p3vex] {
    border: 1px solid #ccc;
    
    > div {
        display: grid;
        grid-template-columns: 1fr 150px 2fr;
        background-color: white;
    }
}

/* Header styling */
.grid-header[b-ck0o0p3vex] {
    font-weight: bold;
    background-color: #ddd;
    padding: 6px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

.even[b-ck0o0p3vex] {
    background-color: #E6E6E6 !important;  /* slightly darker light gray */
}

div.middle[b-ck0o0p3vex] {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
/* /Components/Management/TimeoutConfiguration.razor.rz.scp.css */
/* /Components/Pages/Dashboard.razor.rz.scp.css */
.dashboard-container[b-9hu5fmcwsw] {
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
}
/* /Components/Pages/Manage.razor.rz.scp.css */
.manage-container[b-emq9aqswbb] {
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: var(--rz-panel-shadow);
}
/* /Components/Reports/AttachmentsReport.razor.rz.scp.css */
/* /Components/Reports/AverageTimeSpentReport.razor.rz.scp.css */
/* /Components/Reports/Bars.razor.rz.scp.css */
.bars[b-08pe87v153] {
    width: 100%;
    margin: 0 auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.bar[b-08pe87v153] {
    position: relative;
    min-height: 35px;
    max-height: 150px;
    margin: 5px 0;
    background: #f4f4f4;
    border-radius: 5px;
    overflow: auto;
    flex-grow: 1;
    /*border: 1px solid var(--primary-color);*/
}

.bar-fill[b-08pe87v153] {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    color: white;
    font-weight: bold;
    white-space: nowrap;
}

.bar-label[b-08pe87v153] {
    z-index: 1;
    width: 98%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    margin: 0 0 0 1%;
    font-weight: 550;
    font-size: 1.1rem;
    white-space: normal;
    color: var(--primary-color);
    gap: 5px;
}

.bar-label span:first-child[b-08pe87v153] {
    font-size: 0.9rem;
    font-weight: normal;
    white-space: normal; /* Prevent wrapping */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Add "..." in case text is too long */
    flex-grow: 1;
}

.bar-label span:last-child[b-08pe87v153] {
    flex-grow: 0;
}
/* /Components/Reports/DataTile.razor.rz.scp.css */
.tile[b-0f5b27d18l] {
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    /*border: 1px solid var(--primary-color);*/
    border-radius: 5px;
    background-color: #d3ecf8;
    /*background: radial-gradient(circle at 30% 30%, #d3ecf8 0%, #bde3f5 40%, #B1DEF3 100%);*/
    /*box-shadow: inset -5px -5px 15px rgba(255, 255, 255, 0.6),*/
    /*inset 5px 5px 15px rgba(0, 0, 0, 0.1),*/
    /*0 4px 10px rgba(0, 0, 0, 0.2);*/
}

.tile-body[b-0f5b27d18l] {
    flex-grow: 1;
    display: flex;
    justify-content: center;  /* horizontal centering */
    align-items: center;
    font-size: 10rem;
    color: var(--primary-color);
}

.sub-title[b-0f5b27d18l] {
    font-size: 1.1rem;
    font-weight: 550;
    text-align: center;
    padding: 10px;
    color: #5C5C5C;
}
/* /Components/Reports/DestinationToolingReport.razor.rz.scp.css */
/* /Components/Reports/FormSubmittedReport.razor.rz.scp.css */
/* /Components/Reports/MultiValueDataTile.razor.rz.scp.css */
.tile[b-tiy3e22h6q] {
    width: 100%;
    min-height: 175px;
    display: flex;
    flex-direction: column;
    /*border: 1px solid var(--primary-color);*/
    border-radius: 5px;
    background-color: #d3ecf8;
    /*background: radial-gradient(circle at 30% 30%, #d3ecf8 0%, #bde3f5 40%, #B1DEF3 100%);*/
    /*box-shadow: inset -5px -5px 15px rgba(255, 255, 255, 0.6),*/
    /*inset 5px 5px 15px rgba(0, 0, 0, 0.1),*/
    /*0 4px 10px rgba(0, 0, 0, 0.2);*/
}

.tile-date[b-tiy3e22h6q] {
    width: 100%;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background-color: #d3ecf8;
    font-size: 1.1rem;
    font-weight: 550;
    text-align: center;
    padding: 10px;
    color: #5C5C5C;
}

.tile-body[b-tiy3e22h6q] {
    flex-grow: 1;
    display: flex;
    justify-content: center;  /* horizontal centering */
    align-items: center;
    font-size: 5rem;
    color: var(--primary-color);
}

.sub-title[b-tiy3e22h6q] {
    font-size: 1.1rem;
    font-weight: 550;
    text-align: center;
    padding: 10px 0 0 0;
    color: var(--primary-color);
}
/* /Components/Reports/NoData.razor.rz.scp.css */
.no-data[b-znh82peg4z] {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 550;
    align-content: center;
    color: #bcbcbc;
    width: 200px;
    margin: 0 auto;
    min-height: 400px;
}
/* /Components/Reports/SelectedSystemReport.razor.rz.scp.css */
/* /Components/Reports/TotalSubmissionsReport.razor.rz.scp.css */
/* /Components/Shared/DateRangeFilter.razor.rz.scp.css */
.custom-select-container[b-lw3vq6v5lg] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-family: Arial, sans-serif;
}

.dropdown[b-lw3vq6v5lg] {
    position: relative;
    user-select: none;
    z-index: 100;
}

.dropdown-box[b-lw3vq6v5lg] {
    background-color: var(--primary-color);
    border: 1px solid var(--rz-primary-darker);
    color: white;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    min-width: 200px;
}

.dropdown-box[aria-dropdown-state="initial"][b-lw3vq6v5lg] {
    border-radius: 5px;
}

.dropdown-box[aria-dropdown-state="open"][b-lw3vq6v5lg] {
    animation: dropdownOpening-b-lw3vq6v5lg 0.25s ease-in-out;
    border-radius: 5px 5px 5px 0;
}

.dropdown-box[aria-dropdown-state="closed"][b-lw3vq6v5lg] {
    animation: dropdownClosing-b-lw3vq6v5lg 0.1s ease-in-out;
    border-radius: 5px;
}

@keyframes dropdownOpening-b-lw3vq6v5lg {
    from {
        border-radius: 5px;
    }
    to {
        border-radius: 5px 5px 5px 0;
    }
}

@keyframes dropdownClosing-b-lw3vq6v5lg {
    from {
        border-radius: 5px 5px 5px 0;
    }
    to {
        border-radius: 5px;
    }
}

.dropdown-box > div[b-lw3vq6v5lg] {
    padding: 5px 10px;
}

.dropdown-box > div:nth-child(2)[b-lw3vq6v5lg] {
    border-left: 1px solid var(--rz-primary-darker);
    padding: 5px;
}

.picker-dropdown-menu[b-lw3vq6v5lg] {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid var(--primary-color);
    box-shadow: var(--menu-shadow);
    z-index: 10;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    scrollbar-width: none;
}

.picker-dropdown-menu[aria-dropdown-state="initial"][b-lw3vq6v5lg] {
    visibility: hidden;
    max-height: 0;
}

.picker-dropdown-menu[aria-dropdown-state="open"][b-lw3vq6v5lg] {
    animation: animateDropDownOpen-b-lw3vq6v5lg 0.25s ease-in-out;
    max-height: 400px;
}

.picker-dropdown-menu[aria-dropdown-state="closed"][b-lw3vq6v5lg] {
    animation: animateDropDownClose-b-lw3vq6v5lg 0.1s ease-in-out;
    visibility: hidden;
    max-height: 0;
}

@keyframes animateDropDownOpen-b-lw3vq6v5lg {
    from {
        max-height: 0;
        visibility: visible;
        overflow: hidden;
    }
    to {
        max-height: 400px;
        visibility: hidden;
        overflow: auto;
    }
}

@keyframes animateDropDownClose-b-lw3vq6v5lg {
    from {
        max-height: 400px;
        visibility: visible;
        overflow: auto;
    }
    to {
        max-height: 0;
        visibility: hidden;
        overflow: hidden;
    }
}

.picker-dropdown-menu div[b-lw3vq6v5lg] {
    padding: 10px;
    cursor: pointer;
}

.picker-dropdown-menu div:hover[b-lw3vq6v5lg] {
    background-color: var(--rz-primary-lighter);
    color: var(--primary-color);
}

.picker-connector[b-lw3vq6v5lg] {
    background: #0273ca;
    border: 1px solid var(--rz-primary-darker);
    width: 21px;
    height: 36px;
    position: absolute;
    top: -1px;
    left: -21px;
    z-index: 1;
    border-right: none;
}

.range-panel[b-lw3vq6v5lg], .custom-panel[b-lw3vq6v5lg] {
    background: #0273ca;
    color: white;
    border: 1px solid var(--rz-primary-darker);
    min-width: 200px;
    position: relative;
    border-radius: 0 5px 5px 0;
    vertical-align: middle;
    padding: 1px 20px 1px 25px;
    left: -30px;
}

.date-picker-container[b-lw3vq6v5lg] {
    padding: 2px 0 3px 0;
}

[b-lw3vq6v5lg] .range-panel p {
    margin: 0;
    color: white;
    padding: 4px 2px;
}

[b-lw3vq6v5lg] .rz-datepicker:not(.rz-state-disabled) .rz-datepicker-trigger,
[b-lw3vq6v5lg] .rz-datepicker:not(.rz-state-disabled):hover .rz-datepicker-trigger {
    color: white;
}

.pl-10[b-lw3vq6v5lg] {
    padding-left: 10px;
}

[b-lw3vq6v5lg] .time-label {
    min-width: 166px;
}

[b-lw3vq6v5lg] .flip-180 {
    animation: flip-180-b-lw3vq6v5lg 0.75s ease-in-out forwards;
}

.selected[b-lw3vq6v5lg] {
    color: var(--primary-color);
}

/* define the keyframes from 0° to 180° */
@keyframes flip-180-b-lw3vq6v5lg {
    from {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    to {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
}
/* /Components/Shared/Error.razor.rz.scp.css */
*[b-ln47b7duax] {
    box-sizing: border-box;
    margin: 0;
}

html[b-ln47b7duax] {
    block-size: 100%;
}

body[b-ln47b7duax] {
    min-block-size: 100%;
    font-family: system-ui, sans-serif;

    display: grid;
    place-content: center;
    gap: 2vmin;
}

div.error-page[b-ln47b7duax] {
    background-color: white;
}

div#logo[b-ln47b7duax] {
    background-color: var(--primary-color);
    color: white;
    width: 60%;
    height: 100%;
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
}

div#logo > a:first-child[b-ln47b7duax]  {
    width: 50%;
    height: auto;
}

div#logo > a:first-child > img[b-ln47b7duax] {
    width: 100%;
}

div#logo > a:last-child[b-ln47b7duax] {
    font-size: clamp(0.5rem, 2vw, 1rem);
}

div#status[b-ln47b7duax] {
    color: var(--primary-color);
    width: 40%;
}

div#status > h1[b-ln47b7duax] {
    font-size: clamp(1rem, 7vw, 8rem);
}

div#status > div[b-ln47b7duax] {
    font-size: clamp(0.5rem, 2vw, 2rem);
}
/* /Components/Shared/FadeInAnimation.razor.rz.scp.css */
div[b-1mrr55188h] {
    animation-duration: 0.75s;
    animation-fill-mode: both;
}

.fade-in[b-1mrr55188h] {
    animation-name: fadeIn-b-1mrr55188h;
}

@keyframes fadeIn-b-1mrr55188h {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* /Components/Shared/SectionHeader.razor.rz.scp.css */
.section-header-container[b-xvqhg0i3d0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    margin: 1.5rem 0 0.75rem 0;
    border-bottom: 1px solid var(--secondary-color);
    color: var(--primary-color);
}

h5[b-xvqhg0i3d0] {
    font-size: clamp(1.25rem, 1.667vw, 1.5rem);
    color: var(--primary-color);
    font-weight: 500;
}
/* /Components/Shared/SpinnerOverlay.razor.rz.scp.css */
.spinner-overlay[b-pu4yps4bws] {
    --size: 75px;
    --clr-bg: transparent;
    --clr1: #025DA3;
    --clr2: #9e9e9e;
    --clr3: #FE654F;
    --animation-duration: 1000ms;

    background-color: var(--clr-bg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner[b-pu4yps4bws] {
    position: relative;
    width: var(--size);
    height: var(--size);
}

.spinner-item[b-pu4yps4bws] {
    position: absolute;
    width: var(--item-size);
    height: var(--item-size);
    top: calc(50% - var(--item-size) / 2);
    left: calc(50% - var(--item-size) / 2);
    border: 4px solid transparent;
    border-left: 4px solid var(--clr-spinner);
    border-right: 4px solid var(--clr-spinner);
    border-radius: 50%;
    animation: spinner1-b-pu4yps4bws var(--animation-duration) linear infinite;
}

@keyframes spinner1-b-pu4yps4bws {
    to {
        transform: rotate(360deg);
    }
}

.spinner-item:nth-of-type(1)[b-pu4yps4bws] {
    --item-size: var(--size);
    --clr-spinner: var(--clr1);
    border-top: 4px solid var(--clr1);
}

.spinner-item:nth-of-type(2)[b-pu4yps4bws] {
    --item-size: calc(var(--size) - 15px);
    --clr-spinner: var(--clr3);
    border-bottom: 4px solid var(--clr3);
}

.spinner-item:nth-of-type(3)[b-pu4yps4bws] {
    --item-size: calc(var(--size) - 30px);
    --clr-spinner: var(--clr2);
    border-top: 4px solid var(--clr2);
}
/* /Components/Shared/ValidationNotification.razor.rz.scp.css */
/* /Components/SharedRequestComponents/AttachmentResult.razor.rz.scp.css */
[b-m1liuho99g] .progress-right {
    margin-left: auto;
}
/* /Components/SharedRequestComponents/AttachmentSummary.razor.rz.scp.css */
.attachment-heading[b-ev0aw6eee4] {
    padding-left: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.odd[b-ev0aw6eee4] {
    background-color: #dfeff8;
}

.summary-row[b-ev0aw6eee4] {
    padding: 2px 0;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: stretch;
    gap: 10px;
    font-size: 0.9rem;

    & > div:first-child {
        width: 170px;
        text-wrap: wrap;
        text-align: right;
    }

    & > div:last-child[b-ev0aw6eee4] {
        flex: 1;
        padding: 0 10px;
        align-content: start;
    }

    & > div:last-child:empty[b-ev0aw6eee4]:before {
        content: "\00a0";
    }
}

pre[b-ev0aw6eee4] {
    all: unset;
    font: inherit;
    white-space: pre-wrap;
    display: block;
}

.big[b-ev0aw6eee4] {
    font-weight: 550;
    text-decoration: underline;
}
/* /Components/SharedRequestComponents/Confirmation.razor.rz.scp.css */
.center[b-sj8ckhofqv] {
    display: block;
    margin: 0 auto;
    text-align: center;
}

[b-sj8ckhofqv] .feedback-icon {
    font-size: 10em;
}

.msg[b-sj8ckhofqv] {
    margin-top: 7px;
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: x-large;
    width: 60%;
    border-radius: 5px;
    text-align: center;
}

.response-message[b-sj8ckhofqv] {
    padding: 5px 15px;
    font-size: x-large;
    width: 60%;
    border-radius: 5px;
}

@media (max-width: 999px) {
    .response-message[b-sj8ckhofqv] {
        width: 100%;
    }
}

.success[b-sj8ckhofqv] {
    background-color: var(--bs-success-bg-subtle);
    color: var(--bs-success);
    border: 1px solid var(--bs-success);
}

.warning[b-sj8ckhofqv] {
    background-color: rgb(255, 244, 230);
    color: #ff9800;
    border: 1px solid #ff9800;
}

.error[b-sj8ckhofqv] {
    background-color: var(--bs-danger-bg-subtle);
    color: var(--bs-danger);
    border: 1px solid var(--bs-danger);
}

.ticket-msg[b-sj8ckhofqv] {
    margin-top: 40px; 
    margin-bottom: 10px;
    font-size: large;
    color: blue;
    width: fit-content;
}

.ticket-number[b-sj8ckhofqv] {
    margin-bottom: 20px;
    padding: 5px 25px;
    font-size: x-large;
    color: blue;
    width: fit-content;
    border-radius: 5px;
    border: 1px solid blue;
}

.new-request-button[b-sj8ckhofqv] {
    padding: 13px;
    border-radius: 5px;
    border: 1px solid darkblue;
    font-weight: 500;
    font-size: 1.1rem;
    width: fit-content;
    color: white;
    background-color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    text-decoration: none;
}

ul.failed-attachments[b-sj8ckhofqv] {
    padding: 1rem !important;
    border: none !important;
    background-color: rgb(255, 244, 230) !important;
    margin-bottom: 0 !important;
}

#left-block[b-sj8ckhofqv] {
    width: 25%;
    background: var(--primary-color);
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
    color: white;
    padding: 20px;
}

#right-block[b-sj8ckhofqv] {
    width: 25%;
    background: #91bff3;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    color: white;
    padding: 20px;
}

#center-block[b-sj8ckhofqv] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.3rem;
    width: 50%;
}

[b-sj8ckhofqv] div.wrapper {
    padding: 0 !important;
    overflow: hidden;
    color: var(--primary-color);
    background-color: white;
}

[b-sj8ckhofqv] .confirm-heading {
    font-weight: 500;
    color: var(--primary-color);
}

#confirm-logo[b-sj8ckhofqv] {
    width: 350px;
}

div.success-message[b-sj8ckhofqv] {
    font-size: 1.15rem;
    text-align: center;
}

div#reference-number[b-sj8ckhofqv] {
    font-size: 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 10px 20px;
    
    span {
        font-weight: 500;
    }
}

div#date-submitted[b-sj8ckhofqv] {
    span {
        font-weight: 500;
    }
}

div#flight-plan-contacts[b-sj8ckhofqv] {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    
    div:not(:first-child) {
        font-weight: 500;
    }
}

div#warning-message[b-sj8ckhofqv] {
    color: var(--rz-warning);
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    border: 1px solid var(--rz-warning);
    border-radius: 5px;

    div:not(:first-child) {
        font-weight: 500;
    }
}

[b-sj8ckhofqv] div.rz-alert-item {
    align-items: center;
}
/* /Components/SharedRequestComponents/PIIDetection.razor.rz.scp.css */
pre[b-vccojrjgwk] {
    all: unset;
    font: inherit;
    white-space: pre-wrap;
    display: block;
}

.pii-highlight[b-vccojrjgwk] {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
    cursor: help;
}
/* /Components/SharedRequestComponents/PreFlightCheck.razor.rz.scp.css */
.dropdown-spinner[b-0x62zgk5qz] {
    position: absolute;
    top: 50%;
    right: 2rem; /* space from right edge of the control */
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* allow interactions with the dropdown */
    z-index: 2; /* above the input, below popups */
}

/* Ensure the wrapper provides a positioning context */
.position-relative[b-0x62zgk5qz] {
    position: relative;
}
/* /Components/SharedRequestComponents/RequestAttachments.razor.rz.scp.css */
[b-yxwj9mbham] .drop-zone-text {
    font-size: 1.6em;
    
    span {
        font-weight: 500;
        color: var(--primary-color);
        cursor: pointer;
    }
}

[b-yxwj9mbham] .rz-alert.font-size-large {
    font-size: large;
}

.drop-zone[b-yxwj9mbham] {
    padding: 20px;
    width: 100%;
    min-height: 100px;
    border: 2px dashed var(--primary-color);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    background-color: white;
    
    input {
        display: none;
        visibility: hidden;
    }
    
    p[b-yxwj9mbham] {
        margin: 0;
        font-size: 1.6em;
        color: var(--primary-color);
    }
}

.drop-zone.hover[b-yxwj9mbham] {
    border-style: solid;
}

.file-panel[b-yxwj9mbham] {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid lightgrey;
    margin-top: 10px;
}
/* /Components/SharedRequestComponents/RequestDetails.razor.rz.scp.css */
.unknown-field-type[b-ldt47k9koz] {
    color: #FF0000;
    background-color: #FF000010;
    border-radius: 5px;
    border: 1px solid #FF000050;
}

#summary-system[b-ldt47k9koz] {
    border: 1px solid #bdbdbd;
    border-radius: 5px 0 0 5px;
    z-index: 1;
    background-color: #dcdcdc;
    font-weight: 500;
    border-right: none;
    padding: 0;
    
    > div {
        border-right: 1px solid #bdbdbd;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 7px 5px 7px 7px;
    }
}

#summary-system:has(+ #summary-field:hover)[b-ldt47k9koz] {
    box-shadow: var(--rz-input-hover-shadow);
    border: var(--rz-input-hover-border);
    border-block-end: var(--rz-input-hover-border-block-end);
    border-right: none;
}

#summary-system:has(+ #summary-field:focus)[b-ldt47k9koz] {
    box-shadow:
        inset 1px 0 0 var(--rz-primary),   /* left */
        inset 0 1px 0 var(--rz-primary),   /* top */
        inset 0 -1px 0 var(--rz-primary);  /* bottom */
    border: var(--rz-input-focus-border);
    border-block-end: var(--rz-input-focus-border-block-end);
    outline: var(--rz-input-focus-outline);
    outline-offset: var(--rz-input-focus-outline-offset);
    border-right: none;
    padding: 1px 0;
    
    > div {
        height: 36px;
    }
}

[b-ldt47k9koz] #summary-field {
    left: -5px;
    position: relative;
    padding-left: 8px;
    flex-grow: 1;
}

[b-ldt47k9koz] #summary-field:focus {
    box-shadow:
        inset 0 1px 0 var(--rz-primary),    /* top */
        inset 0 -1px 0 var(--rz-primary),   /* bottom */
        inset -1px 0 0 var(--rz-primary);   /* right */
}
/* /Components/SharedRequestComponents/RequestSummary.razor.rz.scp.css */
.no-definition[b-mu6kp249n7] {
    border-radius: 5px;
    color: #FF0000;
    background-color: #FF000010;
    border: 1px solid #FF000050;
}
/* /Components/SharedRequestComponents/RequestWizard.razor.rz.scp.css */
div#the-wizard[b-hlxzcaid48] {
    width: 85vw;
    max-width: 95%;
    display: block; 
    margin: 0 auto;
}

[b-hlxzcaid48] .rz-steps ul {
    padding: 1rem;
    border: 1px solid lightgrey;
    border-radius: 40px;
    background-color: white;
    margin-bottom: 0;
}

[b-hlxzcaid48] .rz-steps .rz-state-highlight .rz-steps-number {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
}

[b-hlxzcaid48] .rz-steps .rz-state-highlight .rz-steps-title {
    color: var(--primary-color);
}

[b-hlxzcaid48] .rz-steps-buttons {
    width: 95%;
    padding: 15px;
    margin: 0 auto;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: lightgrey;
    border-radius: 0 0 10px 10px;
    background-color: #f7faf9;
    justify-content: center;
    
    a {
        padding: 13px;
        margin: 0 10px;
        border-radius: 5px;
        border: 1px solid var(--primary-color);
        font-weight: 500;
        font-size: 1.1em;
    }
}

[b-hlxzcaid48] .rz-steps-prev .rzi::before {
    content: "arrow_back" !important;
}

[b-hlxzcaid48] .rz-steps-next {
    background-color: var(--primary-color);
    color: var(--primary-text-color) !important;

    .rzi::before {
        content: "arrow_forward" !important;
        padding-left: 5px;
    }
}

[b-hlxzcaid48] .rz-steps-next:not(.rz-state-disabled):hover {
    color: var(--primary-text-color) !important;
}

[b-hlxzcaid48] .rz-steps-prev:not(.rz-state-disabled):hover {
    color: var(--primary-color) !important;
}

[b-hlxzcaid48] .submit-btn {
    background-color: var(--bs-success);
}
/* /Components/SharedRequestComponents/StakeholderSummary.razor.rz.scp.css */
.stakeholder-heading[b-tise5ccij6] {
    padding-left: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}
/* /Components/SharedRequestComponents/StepItemWrapper.razor.rz.scp.css */
.wrapper[b-bjjtqdr5kt] {
    width: 95%;
    background-color: #f7faf9;
    /*border-radius: 0 0 10px 10px;*/
    margin: 0 auto;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: lightgrey;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 1px 75px 15px 75px;
}
/* /Components/SharedRequestComponents/SummaryRow.razor.rz.scp.css */
.odd[b-t3rnk7asyd] {
    background-color: #dfeff8;
}

.group-header[b-t3rnk7asyd] {
    font-size: 1.1rem;
    font-weight: 550;
    padding: 10px 0;
}

.summary-row[b-t3rnk7asyd] {
    padding: 2px 0;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: stretch;
    gap: 10px;
    font-size: 0.9rem;

    & > div:first-child {
        width: 170px;
        text-wrap: wrap;
        text-align: right;
    }

    & > div:last-child[b-t3rnk7asyd] {
        flex: 1;
        padding: 0 10px;
        align-content: start;
    }

    & > div:last-child:empty[b-t3rnk7asyd]:before {
        content: "\00a0";
    }
}

pre[b-t3rnk7asyd] {
    all: unset;
    font: inherit;
    white-space: pre-wrap;
    display: block;
}
/* /Components/SharedRequestComponents/WizardNavigation.razor.rz.scp.css */
[b-k39qtahvqh] button {
    padding: 13px;
}
/* /Components/SharedRequestComponents/WizardSummaryNavigation.razor.rz.scp.css */
[b-zvpq261eog] .submit-btn {
    background-color: var(--primary-color) !important;
}

.pii-attestation[b-zvpq261eog] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: #ebebeb;
    padding: 5px 5px 5px 10px;
    border-radius: 5px;
    border: 1px solid #999;
}

div.notice[b-zvpq261eog] {
    width: 210px;
    font-size: 0.9rem;
}

[b-zvpq261eog] .send-icon {
    rotate: -45deg;
}
/* /Components/SharedRequestComponents/WorkInProgress/SaveWorkInProgressDialog.razor.rz.scp.css */
.dialog-header[b-448efx0e6j] {
    color: var(--primary-color);
    font-size: clamp(1.25rem, 1.667vw, 1.5rem);
    font-weight: 500;
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 20px;
}

.dialog-warning-icon[b-448efx0e6j] {
    font-size: 1rem;
    margin-right: 5px;
}

.warning-container[b-448efx0e6j] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.warning-icon[b-448efx0e6j] {
    vertical-align: middle;
    position: relative;
    top: -1px; /* adjust until visually correct */
}

.warning-text[b-448efx0e6j] {
    color: #333;
    font-weight: 500;
}
/* /Components/SharedRequestComponents/WorkInProgress/SelectWorkInProgressDialog.razor.rz.scp.css */
.dialog-header[b-mfpt0exgmu] {
    color: var(--primary-color);
    font-size: clamp(1.25rem, 1.667vw, 1.5rem);
    font-weight: 500;
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 20px;
}
.dialog-warning-icon[b-mfpt0exgmu] {
    font-size: 1rem;
    margin-right: 5px;
}

.warning-container[b-mfpt0exgmu] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.warning-icon[b-mfpt0exgmu] {
    vertical-align: middle;
    position: relative;
    top: -1px; /* adjust until visually correct */
}

.warning-text[b-mfpt0exgmu] {
    color: #333;
    font-weight: 500;
}
/* /Components/SharedRequestComponents/WorkInProgress/WorkInProgressMenu.razor.rz.scp.css */
.icon-menu-container[b-x0f6wt7730] {
    position: relative;
    display: inline-block;
}

#menu-icon[b-x0f6wt7730] {
    cursor: pointer;
}

#menu-panel[b-x0f6wt7730] {
    position: absolute;
    top: 110%;
    right: -1px;
    min-width: 101%;
    background: white;
    box-shadow: var(--menu-shadow);
    scrollbar-width: none;
    z-index: 100;
}

#menu-panel[aria-menu-state="initial"][b-x0f6wt7730] {
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
}

#menu-panel[aria-menu-state="open"][b-x0f6wt7730] {
    animation: openMenu-b-x0f6wt7730 0.25s ease-in-out;
    overflow: auto;
    visibility: visible;
}

#menu-panel[aria-menu-state="closed"][b-x0f6wt7730] {
    animation: closeMenu-b-x0f6wt7730 0.1s ease-in-out;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
}

@keyframes openMenu-b-x0f6wt7730 {
    from {
        max-height: 0;
        visibility: hidden;
    }
    to {
        visibility: visible;
    }
}

@keyframes closeMenu-b-x0f6wt7730 {
    from {
        overflow: auto;
        visibility: visible;
    }
    to {
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
    }
}

.menu-item[b-x0f6wt7730] {
    text-wrap: nowrap;
    width: auto;
    cursor: pointer;
    padding: 2px 10px;
}

.menu-item:hover[b-x0f6wt7730] {
    background: #f0f0f0;
}
