@import '_content/WK.Blazor.DragDrop/WK.Blazor.DragDrop.bundle.scp.css';

/* /Components/CaseAttachments.razor.rz.scp.css */

[b-gcj8z8oz1f] .attachments-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

[b-gcj8z8oz1f] .attachments-header-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

[b-gcj8z8oz1f] .add-attachment-btn {
    pointer-events: none;
}

[b-gcj8z8oz1f] .attachments-list-container {
    margin-top: 0.5rem;
}

[b-gcj8z8oz1f] .no-attachments-text {
    margin-top: 5rem;
    text-align: center;
    color: var(--main-text-color);
    font-family: var(--font-family);
    font-size: 14px;
}

[b-gcj8z8oz1f] .attachment-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

[b-gcj8z8oz1f] .delete-attachment-icon {
    font-size: 24px;
    color: var(--incident-danger);
    margin-right:1rem;
    cursor: pointer;
}

[b-gcj8z8oz1f] .attachment-text-container {
    text-overflow: ellipsis;
    overflow: hidden;
}

[b-gcj8z8oz1f] .pointer-label {
    cursor: pointer;
}

[b-gcj8z8oz1f] .attachment-text {
    white-space: nowrap;
    font-weight: var(--bold-weight);
    font-family: var(--font-family);
    font-size: 14px;
}
/* /Components/ConnectionStatus.razor.rz.scp.css */
[b-rcqp5pbifq] .online-icon {
    color: var(--incident-success);
}

[b-rcqp5pbifq] .offline-icon {
    color: var(--incident-danger);
}

[b-rcqp5pbifq] .size-small {
    font-size: 24px;
}

[b-rcqp5pbifq] .size-normal {
    font-size: 32px;
}
/* /Components/FormPasswordField.razor.rz.scp.css */
[b-hp1guupsg8] .e-input-group .password-icon{
    color: var(--primary-color);
    border: none;
    font-size: 20px;
    position: absolute;
    right: 10px;
}
/* /Components/IncidentHeader.razor.rz.scp.css */
.header-container[b-ohcagm22i2] {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: var(--incident-header-height);
    margin-bottom: 1.5em;
}

.header-start[b-ohcagm22i2] {
    width: var(--incident-header-height);
}

.header-content[b-ohcagm22i2] {
    flex-grow: 1;
    font-size: 14px;
    font-weight: var(--bold-weight);
    text-align: center;
}

.header-end[b-ohcagm22i2] {
    width: var(--incident-header-height);
    text-align: right;
}

/* /Components/IncidentIconButton.razor.rz.scp.css */
.incident-icon-button[b-i6rs8cgc9u] {
    cursor: pointer;
}

.disabled[b-i6rs8cgc9u] {
    cursor: default;
}

[b-i6rs8cgc9u] .header-btn-danger {
    font-size: 24px;
    color: var(--incident-danger);
}

[b-i6rs8cgc9u].disabled .header-btn-danger {
    color: var(--secondary-color) !important;
}

/* /Components/Sheet.razor.rz.scp.css */
.bottom-sheet-cover[b-vryj5nqe0s] {
    background-color: white;
    padding: 16px 20px 16px 20px;
    flex-direction: row;
}

.bottom-sheet[b-vryj5nqe0s] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s linear;
}

    .bottom-sheet.show[b-vryj5nqe0s] {
        opacity: 1;
        pointer-events: auto;
        transition: opacity 0.3s ease, transform 0.3s ease; /* Add transform transition */
    }

    .bottom-sheet.show-half[b-vryj5nqe0s] {
        opacity: 1;
        pointer-events: auto;
    }

.overlay[b-vryj5nqe0s] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.2;
    z-index: -1;
}

.bottom-sheet .content[b-vryj5nqe0s] {
    height: 50vh;
    max-height: 50vh;
    width: 100%;
    max-width: 1150px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transform: translateY(100%);
    transition: 0.3s ease;
    overflow-y: auto;
}

.bottom-sheet.show .content[b-vryj5nqe0s] {
    transform: translateY(0%);
}

.bottom-sheet.dragging .content[b-vryj5nqe0s] {
    transition: none;
}

.bottom-sheet.fullscreen .content[b-vryj5nqe0s] {
    border-radius: 0;
}

.bottom-sheet .content .sheet-head[b-vryj5nqe0s] {
    display: flex;
    justify-content: center;
}

    .bottom-sheet .content .sheet-head .drag-div[b-vryj5nqe0s] {
        padding: 15px;
        margin-top: -15px;
        cursor: grab;
        user-select: none;
        min-height: 30px;
    }

        .bottom-sheet .content .sheet-head .drag-div span[b-vryj5nqe0s] {
            height: 4px;
            width: 40px;
            background: gray;
            display: block;
            border-radius: 10px;
        }

.bottom-sheet .content .body[b-vryj5nqe0s] {
    height: 100%;
    padding: 15px 0 40px;
    overflow-y: auto;
}

    .bottom-sheet .content .body[b-vryj5nqe0s]::-webkit-scrollbar {
        width: 0;
    }

    .bottom-sheet .content .body h2[b-vryj5nqe0s] {
        font-size: 1.8rem;
    }

    .bottom-sheet .content .body p[b-vryj5nqe0s] {
        font-size: 1.06rem;
        margin-top: 20px;
    }

/* /Pages/ConfirmationPage.razor.rz.scp.css */
.background-container[b-04rghjckxt] {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    min-width: 100%;
    text-align: center;
    background-color: black;
    background-image: url(../images/login-background.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100% auto;
}

[b-04rghjckxt] .primary-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    width: 80%;
    max-width: 450px;
}

[b-04rghjckxt] .offline-icon-red {
    color: var(--incident-danger);
    font-size: 100px;
}
/* /Pages/CreateCase.razor.rz.scp.css */
.case-type-container[b-dmx7npt0w0] {
    gap: 20px 20px;
}

[b-dmx7npt0w0] .btn-case-type {
    width: 250px;
    height: 180px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
}

    [b-dmx7npt0w0] .btn-case-type:hover {
        filter: brightness(0.9);
    }

    [b-dmx7npt0w0] .btn-case-type:active {
        filter: brightness(0.8);
    }

    [b-dmx7npt0w0] .btn-case-type .e-btn-icon {
        height: 79px;
        background-repeat: no-repeat;
        background-position: center;
        margin-bottom: 8px;
    }

[b-dmx7npt0w0] .btn-danger {
    background-color: var(--incident-danger);
    border-color: var(--incident-danger);
    color: var(--primary-text-color);
}

[b-dmx7npt0w0] .btn-warning {
    background-color: var(--incident-warning);
    border-color: var(--incident-warning);
    color: var(--primary-text-color);
}

[b-dmx7npt0w0] .btn-success {
    background-color: var(--incident-success);
    border-color: var(--incident-success);
    color: var(--primary-text-color);
}

[b-dmx7npt0w0] .case-type-incident {
    background-image: url('images/case-type-incident.svg');
}

[b-dmx7npt0w0] .case-type-near-miss {
    background-image: url('images/case-type-near-miss.svg');
}

[b-dmx7npt0w0] .case-type-observation {
    background-image: url('images/case-type-observation.svg');
}

/* /Pages/Index.razor.rz.scp.css */
.header[b-jo16pq0tvo] {
    background-color: var(--main-bg-color);
    color: white;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.header-item[b-jo16pq0tvo], .footer-item[b-jo16pq0tvo] {
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-item[b-jo16pq0tvo] {
    flex-grow: 1;
    width: 100%;
}

.im-title[b-jo16pq0tvo] {
    margin: 28px 8px 28px 8px;
    font-size: 24px;
}

.list[b-jo16pq0tvo] {
    border-radius: 10px;
    background-color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 30px;
    max-height: 100%;
    overflow-x: hidden;
}

.list-title[b-jo16pq0tvo] {
    color: black;
    width: 100%;
}

.case-list[b-jo16pq0tvo] {
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    max-height: 100%;
    overflow-y: auto;
}

.case[b-jo16pq0tvo] {
    display: flex;
    flex-direction: column;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    margin-bottom: 5px;
    width: 100%;
    padding: 10px;
}

.case-title-row[b-jo16pq0tvo] {
    display: flex;
}

.case-title[b-jo16pq0tvo] {
    font-size: 14px;
    flex: 1;
    font-weight: 600;
    color: #424C55;
}

.case-status-row[b-jo16pq0tvo] {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}

.case-status-text[b-jo16pq0tvo] {
    font-weight: 600;
    font-style: italic;
    font-size: 10px;
}

[b-jo16pq0tvo] .case-status-draft {
    background-color: #F8B133 !important;
}

[b-jo16pq0tvo] .case-status-ready-for-upload:not(:disabled) {
    background-color: #4596CD !important;
}

    [b-jo16pq0tvo] .case-status-ready-for-upload:hover:not(:disabled) {
        background-color: #4596CD !important;
    }

    [b-jo16pq0tvo] .case-status-ready-for-upload:active:not(:disabled) {
        background-color: #4596CD !important;
    }

[b-jo16pq0tvo] .case-status-uploaded {
    background-color: #4DAE80 !important;
}

.footer[b-jo16pq0tvo] {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: white;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.header .drag-icon[b-jo16pq0tvo] {
    cursor: grab;
    user-select: none;
    padding: 15px;
    margin-top: -15px;
}

    .header .drag-icon span[b-jo16pq0tvo] {
        height: 4px;
        width: 40px;
        display: block;
        background: #C7D0E1;
        border-radius: 50px;
    }

.divider[b-jo16pq0tvo] {
    width: 25%;
    height: 10px;
    background-color: #C4C4C4;
    margin-bottom: 10px;
    border-radius: 10px;
}

[b-jo16pq0tvo] .primary-text {
    color: #424c55;
    font-size: 20px;
    font-weight: 700;
}

[b-jo16pq0tvo] .secondary-text {
    color: #424c55;
    word-wrap: break-word;
    margin: 16px 24px 0 24px;
    text-align: center;
    font-weight: 700;
}
/* /Pages/Login.razor.rz.scp.css */
:root[b-8u0ve179th] {
    --main-bg-color: #DF6D2E;
    --main-bg-color-active: #DF6D2E;
    --primary-color: #DF6D2E;
}

.email-container[b-8u0ve179th] {
    margin: 48px 0 8px 0;
}

.divider-container[b-8u0ve179th] {
    width: 100%;
}

.grey-divider[b-8u0ve179th] {
    background-color: #848B90;
    height: 1.7px;
    width: 40%;
    margin: 16px 0px 0px 0px;
}

.divider-text[b-8u0ve179th] {
    margin: 0 24px -12px 24px;
    color: #848B90;
    font-size: 12px;
}

[b-8u0ve179th] .e-float-input.e-control-wrapper input:valid ~ label.e-float-text, [b-8u0ve179th] .e-float-input.e-control-wrapper input:focus ~ label.e-label-top.e-float-text {
    color: white !important;
}

.password-container[b-8u0ve179th] {
    margin-top: 16px;
}

[b-8u0ve179th] .guest-login-btn {
    color: var(--primary-color) !important;
    background: transparent !important;
}

[b-8u0ve179th] .forgot-pw-btn {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

@media screen and (min-width: 960px) {
    .email-container[b-8u0ve179th], .password-container[b-8u0ve179th] {
        width: auto;
    }
}
/* /Pages/PasswordRequest.razor.rz.scp.css */
[b-nykyuj84k3] .e-float-input.e-control-wrapper input:valid ~ label.e-float-text, [b-nykyuj84k3] .e-float-input.e-control-wrapper input:focus ~ label.e-label-top.e-float-text {
    color: white !important;
}

[b-nykyuj84k3] .back-btn {
    color: var(--primary-color) !important;
    background: transparent !important;
    border-color: var(--primary-color);
}
/* /Pages/PasswordReset.razor.rz.scp.css */
[b-6ge7ejti8g] .e-float-input.e-control-wrapper input:valid ~ label.e-float-text, [b-6ge7ejti8g] .e-float-input.e-control-wrapper input:focus ~ label.e-label-top.e-float-text {
    color: white !important;
}
