@import '_content/WebClient.UI/WebClient.UI.bundle.scp.css';
@import '_content/OpServ.WebClient.UserwareAPI/OpServ.WebClient.UserwareAPI.bundle.scp.css';
@import '_content/Blazor.UserwareAPI_Primary/Blazor.UserwareAPI_Primary.bundle.scp.css';
@import '_content/Blazor.UserwareAPI_UIToolbox/Blazor.UserwareAPI_UIToolbox.bundle.scp.css';
@import '_content/BlazorDateRangePicker/BlazorDateRangePicker.bundle.scp.css';

/* /Components/FilesFilter.razor.rz.scp.css */
.column[b-d79t85z0zi] {
    position: fixed;
    top: 62px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    margin: 20px;
    width: calc(100% - 40px); /* 40px = 2 * margin */
    background: var(--page-background);
}

.section-title[b-d79t85z0zi] {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--alternative-color);
    color: var(--main-color);
    border-radius: 3px;
    padding: 8px 20px;
}

    .section-title.toggled-off[b-d79t85z0zi] { /* toggle-on and toggle-off have opposite effect in small screen and in large screen */
        background: var(--strong-color);
        color: var(--alternative-color);
    }

.title[b-d79t85z0zi] {
    font-family: var(--title-font);
    font-size: 15px;
    font-weight: 700;
    flex-grow: 1;
}

.expander-arrow[b-d79t85z0zi] {
    transition: all ease 250ms;
    margin: auto;
}

    .expander-arrow.expanded[b-d79t85z0zi] {
        transform: rotate(180deg);
    }

[b-d79t85z0zi] .expander-arrow svg {
    fill: var(--main-color);
    margin: 2px 0px 2px 0px;
}

[b-d79t85z0zi] .expander-arrow.expanded svg {
    fill: var(--alternative-color);
}

.section-content[b-d79t85z0zi] {
    background: var(--alternative-color);
    list-style-type: none;
    margin-block: 0px;
    margin-inline: 0px;
    padding-inline: 0px;
    padding-top: 15px;
}

    .section-content.toggled-on[b-d79t85z0zi], .scrollbox.toggled-on[b-d79t85z0zi] { /* toggle-on and toggle-off have opposite effect in small screen and in large screen */
        display: none;
    }

    .section-content.toggled-off[b-d79t85z0zi] {
        position: fixed;
        z-index: 20;
        width: calc(100% - 40px); /* 40px = 20 + 20 (left + right) */
        height: calc(100% - 251px); /* 251 px == top (137) + footer(96) + bottom margin (20) */
        top: 137px;
        left: 20px;
        overflow-y: auto;
        overflow-x: hidden;
        border: var(--main-border);
        border-radius: 3px;
    }

.scrollbox.toggled-off[b-d79t85z0zi] {
    position: fixed;
    z-index: 20;
    width: calc(100% - 40px); /* 40px = 20 + 20 (left + right) */
    margin: 0px 20px;
    height: calc(100% - 251px); /* 251 px == top (137) + footer(96) + bottom margin (20) */
    top: 137px;
    left: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    border: var(--main-border);
    border-radius: 3px;
    background: var(--page-background);
}

.item[b-d79t85z0zi] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 5px 10px 20px;
    gap: 10px;
    color: var(--main-color);
    max-height: 100px;
    width: calc(100% + 2px); /* Make it go over the edge for the selection marker */
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    overflow-x: hidden;
    overflow-y: hidden;
}

    .item.selected[b-d79t85z0zi] {
        color: var(--strong-color);
        padding-right: 2px;
    }

.item-name[b-d79t85z0zi] {
    flex-grow: 1;
}

.number[b-d79t85z0zi] {
    color: var(--light-color);
}

[b-d79t85z0zi] .item svg {
    fill: var(--light-color);
}

[b-d79t85z0zi] .item.selected svg {
    fill: var(--strong-color);
}

[b-d79t85z0zi] .item.partially-selected svg {
    fill: var(--strong-color);
}

.marker[b-d79t85z0zi] {
    width: 0px;
    height: 30px;
    border-radius: 2px;
}

.item.selected .marker[b-d79t85z0zi] {
    border: 2px solid var(--strong-color);
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .column[b-d79t85z0zi] {
        position: fixed;
        left: 20px;
        top: 117px;
        flex-direction: column;
        padding: 20px 0px;
        gap: 10px;
        margin: initial;
        width: 270px;
        height: calc(100% - 127px); /* 127px == top (117) + bottom margin (10) */
        background-color: var(--main-background);
        border-radius: 10px;
    }

    .title[b-d79t85z0zi] {
        font-weight: 900;
    }

    .section-title[b-d79t85z0zi] {
        flex-grow: initial;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-height: 35px;
        margin: 15px 20px 0px 20px;
        cursor: pointer;
        background: initial;
        border-radius: initial;
        padding: initial;
    }

        .section-title.toggled-off[b-d79t85z0zi] { /* toggle-on and toggle-off have opposite effect in small screen and in large screen */
            margin: 15px 20px 10px 20px;
            background: initial;
            color: initial;
        }

    [b-d79t85z0zi] .expander-arrow.expanded svg {
        fill: var(--main-color);
    }

    .section-content[b-d79t85z0zi] {
        background: initial;
        width: 270px; /* 270px (column width) -20px (left padding) */
        list-style-type: none;
        margin-block: 0px;
        margin-inline: 0px;
        padding-inline: 0px;
        padding-top: 0px;
    }

    .scrollbox[b-d79t85z0zi] {
        width: 289px; /* 270px (column width) +19px (space for scrollbar on Edge. Check other browser?) */
        height: 100%;
        overflow-y: hidden;
        overflow-x: hidden;
    }

        .scrollbox:hover[b-d79t85z0zi] {
            overflow-y: auto;
        }

        .section-content.toggled-on[b-d79t85z0zi], .scrollbox.toggled-on[b-d79t85z0zi] {
            display: initial;
        }

        .section-content.toggled-off[b-d79t85z0zi], .scrollbox.toggled-off[b-d79t85z0zi] {
            display: none;
        }
}
/* /Components/FilesList.razor.rz.scp.css */
.panel[b-28jgz7463b] {
    width: 100%;
    margin-bottom: 100px;
}

.section[b-28jgz7463b] {
    margin: 0px 20px;
}

.section-header[b-28jgz7463b] {
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
}

.section[b-28jgz7463b] {
    padding: 20px;
    margin: initial;
    margin-top: 20px;
    border-radius: 10px;
    border: var(--alternative-border);
    background: var(--button-background);
}

.section-title[b-28jgz7463b] {
    color: var(--main-color);
    flex-grow: 1;
}

.section-content[b-28jgz7463b] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    justify-content: flex-start;
    align-items: stretch;
}

[b-28jgz7463b] .treenode-node {
    margin: 0px 15px;
}

[b-28jgz7463b] .treenode-children-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.file-item[b-28jgz7463b] {
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 12px;
    color: var(--light-color);
    padding: 8px 20px;
    background: var(--main-background);
    border-radius: 3px;
}

.file-part[b-28jgz7463b] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.file-name[b-28jgz7463b] {
    font-size: 13px;
    color: var(--main-color);
    overflow-wrap: anywhere;
}

.procedure-name[b-28jgz7463b] {
    background: var(--button-hover-background);
    color: var(--strong-color);
    padding: 4px 5px;
    border-radius: 4px;
    max-width: 200px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
}

.dl-button[b-28jgz7463b] {
    border: var(--light-border);
    border-radius: 3px;
    padding: 8px 10px;
    color: var(--main-color);
    cursor: pointer;
}

.toolbar[b-28jgz7463b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 27px;
}

.title[b-28jgz7463b] {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 800;
    flex-grow: 1;
}

.buttons[b-28jgz7463b] {
    display: flex;
    justify-content: flex-start;
    border: var(--light-border);
    border-radius: 16px;
}

.button-group[b-28jgz7463b] {
    min-height: 27px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.separator[b-28jgz7463b] {
    width: 1px;
    height: 16px;
    border-left: var(--light-border);
}

.toolbar-button[b-28jgz7463b] {
    background: transparent;
    color: var(--main-color);
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    padding: 8px 10px;
}

.selected[b-28jgz7463b] {
    background: var(--strong-color);
    color: var(--alternative-color);
}

.button-content[b-28jgz7463b] {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    font-family: var(--main-font);
}

.button-text[b-28jgz7463b] {
    display: none;
}

[b-28jgz7463b] .calendar-cancel {
    background: var(--alternative-color);
    color: var(--main-color);
    border-radius: 3px;
    border: 0;
    padding: 8px 10px !important;
    font-family: var(--main-font);
    font-weight: 400 !important;
    cursor: pointer;
}

[b-28jgz7463b] .calendar-apply {
    background: var(--strong-color);
    color: var(--alternative-color);
    border-radius: 3px;
    border: 0;
    padding: 8px 10px !important;
    font-family: var(--main-font);
    font-weight: 400 !important;
    cursor: pointer;
}

[b-28jgz7463b] .toolbar-button svg {
    stroke: var(--light-color);
    fill: transparent;
}

[b-28jgz7463b] .toolbar-button.selected svg {
    stroke: var(--alternative-color);
}

.bolder[b-28jgz7463b] {
    font-weight: 700;
}

@media (max-width: 767px) { /* Override some styles to make calendar responsive */

    [b-28jgz7463b] .daterangepicker {
        top: -14px !important;
        left: 0 !important;
        min-height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

        [b-28jgz7463b] .daterangepicker .drp-buttons {
            width: 100%;
        }

        [b-28jgz7463b] .daterangepicker .calendar-table th, .daterangepicker .calendar-table td[b-28jgz7463b] {
            width: 37px !important;
            height: 32px !important;
            font-size: 15px !important;
        }

    .toolbar[b-28jgz7463b] {
        position: fixed;
        top: 20px;
        left: 20px;
        width: calc(100% - 40px); /* 40px = left + right (20px each) */
        padding: 10px 20px;
        background: var(--alternative-color);
        border-radius: 3px;
    }

    .list-container[b-28jgz7463b] {
        position: fixed;
        z-index: -1;
        width: 100%;
        height: calc(100% - 251px); /* 251 px == top (137) + footer(96) + bottom margin (20) */
        top: 137px;
        overflow-y: auto;
    }

    .apply-button[b-28jgz7463b] {
        display: none;
        float: right;
        background: transparent;
        font-size: 12px;
        color: var(--main-color);
        font-weight: 500;
        padding: 8px 8px 0px 8px;
    }

        .apply-button.visible[b-28jgz7463b] {
            display: block;
        }
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .panel[b-28jgz7463b] {
        position: absolute;
        left: 320px;
        top: 117px;
        width: calc(100% - 356px); /* 356 px = 320px (left margin) + 36px (right margin) */
    }

    .title[b-28jgz7463b] {
        display: none;
    }

    .button-group[b-28jgz7463b] {
        gap: 10px;
    }

    .buttons[b-28jgz7463b] {
        justify-content: space-between;
        border-width: 0;
        flex-grow: 1;
    }

    .toolbar-button[b-28jgz7463b] {
        background: var(--main-background);
    }

    .apply-button[b-28jgz7463b] {
        display: none;
    }

    .selected[b-28jgz7463b] {
        background: var(--strong-color);
        color: var(--alternative-color);
    }

    .button-group .separator[b-28jgz7463b] {
        display: none;
    }

    .button-text[b-28jgz7463b] {
        display: initial;
    }

    .number[b-28jgz7463b] {
        color: var(--light-color);
    }

    .expander-arrow[b-28jgz7463b] {
        transition: all ease 250ms;
        margin: auto;
    }

        .expander-arrow.expanded[b-28jgz7463b] {
            transform: rotate(180deg);
        }

    [b-28jgz7463b] .expander-arrow svg {
        margin: 1px;
    }
}
/* /Components/Header.razor.rz.scp.css */
.page-header[b-urooifdagb] {
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 5;
    background: var(--page-background);
}

.headerbar[b-urooifdagb] {
    padding: 20px 0px;
    width: 100%;
    background: var(--page-header-background);
    display: flex;
    border-radius: 20px 20px 0px 0px;
    justify-content: space-between;
}

.headerzone[b-urooifdagb] {
    flex-grow: 1;
    display: flex;
}

.usermenu-container[b-urooifdagb] {
    max-width: 0;
    overflow-x: hidden;
}

.buttongroup[b-urooifdagb] {
    flex-grow: 1;
    display: flex;
    justify-content: space-evenly;
    margin: 7px 0px;
    overflow-x: hidden;
}

[b-urooifdagb] .button-base {
    display: flex;
    align-items: center;
    min-height: 33px;
    padding: 0px;
    font-weight: 500;
    font-size: 15px;
    flex-grow: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

    [b-urooifdagb] .button-base svg {
        transform: scale(1.5);
    }

[b-urooifdagb] .button {
    color: var(--alternative-color);
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
}

    [b-urooifdagb] .button svg {
        fill: var(--alternative-color);
    }

    [b-urooifdagb] .button.active {
        background: var(--main-background);
        color: var(--main-color);
        border-width: 0px;
        font-weight: 700;
        cursor: default;
    }

[b-urooifdagb] a.button.active svg {
    fill: var(--strong-color);
}

.button-content[b-urooifdagb] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 8px;
    gap: 9px;
    width: 100%;
}

.button-text[b-urooifdagb] {
    display: none;
}

.button-selected[b-urooifdagb] {
    background: var(--main-background);
}

[b-urooifdagb] .button-selected svg {
    fill: var(--strong-color);
}

.button-strong[b-urooifdagb] {
    background: var(--main-background);
    color: var(--main-color);
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
}

[b-urooifdagb] .button-strong svg {
    fill: var(--strong-color);
}

.button-info[b-urooifdagb] {
    background: var(--button-background);
    color: var(--alternative-color);
    border-radius: 3px;
    flex-shrink: 2;
}

[b-urooifdagb] .button-info svg {
    fill: var(--alternative-color);
}

.button-info-light[b-urooifdagb] {
    color: var(--alternative-color);
    flex-shrink: 2;
}

[b-urooifdagb] .button-info-light svg {
    fill: var(--alternative-color);
}

.button-gradient[b-urooifdagb] {
    background: var(--page-header-background);
    border: var(--alternative-border);
    color: var(--alternative-color);
    border-radius: 3px;
    cursor: pointer;
    flex-shrink: 2;
}

[b-urooifdagb] .button-gradient svg {
    fill: var(--alternative-color);
}

.flashy[b-urooifdagb] {
    background: var(--flashy-gradient-background);
}

.user-switch[b-urooifdagb] {
    padding: 8px 5px;
}

    .user-switch p[b-urooifdagb] {
        font-weight: 600;
        font-size: 15px;
        margin-block: 0px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .user-switch p.smaller[b-urooifdagb] {
            font-weight: 400;
            font-size: 12px;
        }

.overflow-background[b-urooifdagb] {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent;
    z-index: 21;
}

.overflow-dropdown[b-urooifdagb] {
    background: var(--page-header-background);
    border: var(--alternative-border);
    border-radius: 5px;
    padding: 10px 5px;
    position: fixed;
    top: 82px;
    left: 0;
    width: calc(100% - 40px);
    height: calc(100% - 196px);
    margin: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 22;
}

.unavailable[b-urooifdagb] {
    display: none;
}

/* Small devices (smartphones)*/
@media (max-width: 767px) {

    .desktop-only[b-urooifdagb] {
        display: none;
    }
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .page-header[b-urooifdagb] {
        position: fixed;
        bottom: initial;
        height: 67px;
        padding: 10px 0px;
        width: 100%;
        z-index: 20;
        background: var(--page-background);
    }

    .headerbar[b-urooifdagb] {
        height: 67px;
        margin: 0px 10px 0px 10px;
        padding: 10px 10px;
        width: calc(100% - 20px);
        background: var(--page-header-background);
        display: flex;
        border-radius: 5px;
        justify-content: space-between;
    }

    .headerzone[b-urooifdagb] {
        flex-grow: initial;
        gap: 20px;
    }

    .usermenu-container[b-urooifdagb] {
        max-width: initial;
        overflow-x: initial;
        width: 260px;
        background: var(--page-background);
        padding: 8px 10px;
        border-radius: 5px;
        display: initial;
    }

    .buttongroup[b-urooifdagb] {
        flex-grow: initial;
        display: flex;
        justify-content: left;
        gap: 20px;
        margin: 7px 20px;
    }

    [b-urooifdagb] .button-base {
        width: initial;
        height: initial;
    }

        [b-urooifdagb] .button-base svg {
            transform: initial;
        }

    [b-urooifdagb] .button {
        background: var(--button-background);
        border: var(--alternative-border);
    }

    .button-content[b-urooifdagb] {
        width: initial;
    }

    .button-text[b-urooifdagb] {
        display: initial;
        max-height: 33px;
        max-width: 400px;
        overflow: hidden;
        word-wrap: anywhere;
        line-height: 17px;
    }

    .mobile-only[b-urooifdagb] {
        display: none;
    }

    .buttongroup[b-urooifdagb]  .dropdown {
        margin: 37px 0 0 0;
    }

    .overflow-dropdown[b-urooifdagb] {
        border-radius: 3px;
        position: absolute;
        top: 59px;
        left: initial;
        width: initial;
        height: initial;
        margin: 0;
        padding: 10px;
    }

    .unavailable[b-urooifdagb] {
        display: none;
    }

    .popup-content[b-urooifdagb] {
        margin: 60px 0px 60px 30px;
        display: flex;
        justify-content: space-between;
    }

    .popup-col-left[b-urooifdagb] {
        max-width: 500px;
    }

    .popup-title[b-urooifdagb] {
        font: var(--title-font);
        font-size: 25px;
        font-weight: bold;
        color: var(--strong-color);
        text-transform: uppercase;
        margin-bottom: 50px;
    }

    .popup-description[b-urooifdagb] {
        font: var(--main-font);
        font-size: 12px;
        color: var(--main-color);
    }

    .popup-message[b-urooifdagb] {
        font: var(--main-font);
        font-size: 15px;
        font-weight: bold;
        color: var(--strong-color);
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .popup-install[b-urooifdagb] {
        border-radius: 16px;
        border: 2px solid var(--light-color);
        margin-top: 50px;
        padding: 7px 7px 5px 7px;
        font: var(--title-font);
        display: inline-block;
        cursor: pointer;
    }

    .popup-col-right[b-urooifdagb] {
        width: 450px;
        background-image: url(Images/rok-web-to-wpf.png);
        background-size: cover;
    }
}
/* /Components/HumanResource/PositionDetail.razor.rz.scp.css */
.card[b-pp3ad61rfb] {
    width: 200px;
    display: block;
}

.card-header[b-pp3ad61rfb] {
    display: flex;
    align-items: center;
    padding: 5px 3px 5px 5px;
    flex-flow: nowrap;
    gap: 10px;
}

    .card-header span[b-pp3ad61rfb] {
        font-weight: bold;
        font-family: var(--title-font);
        flex-grow: 1;
        white-space: normal;
    }

.close-button[b-pp3ad61rfb] {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap; 
}

.info-card[b-pp3ad61rfb] {
    border: 1px solid;
    border-color: var(--light-border-color);
    border-radius: 3px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}

.lbl[b-pp3ad61rfb] {
    font-size: 8pt;
    font-family: var(--title-font);    
}

.val[b-pp3ad61rfb] {
    font-size: 10pt;
    font-family: var(--title-font);
    margin-top: 2px;
    margin-bottom: 5px;
}
/* /Components/HumanResource/ViewList.razor.rz.scp.css */
ul[b-8oxn231qdv] {
    list-style-type: none;
    padding: 0;
}

li[b-8oxn231qdv] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 9px;
    cursor: pointer;
    color: var(--main-color);
    font-size: 12px;
}

    li.selected[b-8oxn231qdv] {
        color: var(--strong-color);        
    }
/* /Components/Overview/CoworkersByPositionGraph.razor.rz.scp.css */
.tile-content[b-6t5hwdvtmd] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--title-font);
    font-weight: 600;
    width: 100%;
}

.title[b-6t5hwdvtmd] {
    font-size: 14px;
}

.graph[b-6t5hwdvtmd] {
    padding-top: 10px;
    width: 100%;
    height: 100%;
    /*max-height: 300px;*/
}

    .graph svg[b-6t5hwdvtmd] {
        width: 100%;
        height: 100%;
    }

.graph-text[b-6t5hwdvtmd] {
    margin: 50px auto;
    text-align: center;
}

.radar-text[b-6t5hwdvtmd] {
    fill: var(--light-color);
    font-size: 4px;
    font-weight: 400;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .graph[b-6t5hwdvtmd] {
        /*max-height: calc(100% - 45px);*/ /* 100px: room for title in worst case scenario (displayed on two lines) */
    }

    .radar-text[b-6t5hwdvtmd] {
        font-size: 5.5px;
    }
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 1280px) {
    .graph[b-6t5hwdvtmd] {
        /*max-height: calc(100% - 45px);*/ /* 100px: room for title in worst case scenario (displayed on two lines) */
    }

    .radar-text[b-6t5hwdvtmd] {
        font-size: 5px;
    }
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 1600px) {
    .graph[b-6t5hwdvtmd] {
        /*max-height: calc(100% - 45px);*/ /* 100px: room for title in worst case scenario (displayed on two lines) */
    }

    .radar-text[b-6t5hwdvtmd] {
        font-size: 4px;
    }
}
/* /Components/Overview/CoworkersGraph.razor.rz.scp.css */
.tile-content[b-utk330mgbz] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--title-font);
    font-weight: 600;
    width: 100%;
}

.title[b-utk330mgbz] {
    font-size: 14px;
}

.graph[b-utk330mgbz] {
    padding-top: 10px;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 5fr 4fr;
    grid-template-rows: 1fr;
    gap: 10px;
}

    .graph svg[b-utk330mgbz] {
        width: 100%;
        height: 100%;
    }

.worker-zone[b-utk330mgbz] {
    border: var(--light-border);
    border-radius: 5px;
    width: 100%;
    height: 35px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: var(--main-font);
    margin-top: 8px;
}

.color-bullet[b-utk330mgbz] {
    margin: 0 10px;
    min-width: 9px;
    height: 9px;
    border-radius: 5px;
}

.name-area[b-utk330mgbz] {
    flex-grow: 1;
    font-weight: 500;
    overflow: hidden;
}

.name[b-utk330mgbz] {
    color: var(--main-color);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.position[b-utk330mgbz] {
    color: var(--light-color);
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.number[b-utk330mgbz] {
    margin: 0 10px;
    color: var(--light-color);
    font-size: 12px;
    font-weight: 600;
}

.graph-text[b-utk330mgbz] {
    margin: 50px auto;
    text-align: center;
    grid-column-start: span 2;
}

.graph-zone[b-utk330mgbz] {
    margin: auto 0px;
}

.legend-zone[b-utk330mgbz] {
    margin: auto 0px;
    overflow-y: hidden;
}

    .legend-zone:hover[b-utk330mgbz] {
        overflow-y: auto;
    }

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .legend-zone[b-utk330mgbz] {
        max-height: calc(100% - 20px);
    }

    .graph-zone[b-utk330mgbz] {
        max-height: calc(100% - 20px);
    }
}
/* /Components/Overview/MonthlyAffectedTasksGraph.razor.rz.scp.css */
.tile-content[b-pv1hvv1pag] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--title-font);
    font-weight: 600;
    width: 100%;
}

.title[b-pv1hvv1pag] {
    font-size: 14px;
}

.number[b-pv1hvv1pag] {
    font-size: 30px;
}

.graph[b-pv1hvv1pag] {
    width: 100%;
    height: 100%;
    max-height: 300px;
}

    .graph svg[b-pv1hvv1pag] {
        width: 100%;
        height: 100%;
    }

svg > rect:hover + line[b-pv1hvv1pag] {
    stroke-width: 10px !important;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .graph[b-pv1hvv1pag] {
        max-height: calc(100% - 65px); /* 100px: room for title in worst case scenario (displayed on two lines) */
    }
}
/* /Components/Overview/MonthlyAffectedTasksSummary.razor.rz.scp.css */
.tile-content[b-42qb5zlkkr] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

    .tile-content > div[b-42qb5zlkkr] {
        flex: 1 1 0px;
    }

.text[b-42qb5zlkkr] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    font-family: var(--title-font);
    height: 100%;
    font-weight: 600;
}

.title[b-42qb5zlkkr] {
    font-size: 14px;
}

.value[b-42qb5zlkkr] {
    font-size: 30px;
}

.small[b-42qb5zlkkr] {
    font-size: 14px;
}

.graph[b-42qb5zlkkr] {
    align-self: center;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    height: 47px;
    max-width: 120px;
    margin: 0 0 0 5px;
}

.data-bar-container[b-42qb5zlkkr] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: var(--page-background);
    border-radius: 4px;
    width: 9px;
}

.data-bar[b-42qb5zlkkr] {
    width: 9px;
    border-radius: 4px;
    background-color: var(--strong-color);
}
/* /Components/Overview/MonthlyCompletedTasksGraph.razor.rz.scp.css */
.tile-content[b-ezt93edu98] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--title-font);
    font-weight: 600;
    width: 100%;
}

.title[b-ezt93edu98] {
    font-size: 14px;
}

.number[b-ezt93edu98] {
    font-size: 30px;
}

.graph[b-ezt93edu98] {
    width: 100%;
    height: 100%;
    max-height: 300px;
}

    .graph svg[b-ezt93edu98] {
        width: 100%;
        height: 100%;
    }

svg > rect:hover + line[b-ezt93edu98] {
    stroke-width: 10px !important;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .graph[b-ezt93edu98] {
        max-height: calc(100% - 65px); /* 100px: room for title in worst case scenario (displayed on two lines) */
    }
}
/* /Components/Overview/MonthlyCompletedTasksSummary.razor.rz.scp.css */
.tile-content[b-c618qhuam3] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

    .tile-content > div[b-c618qhuam3] {
        flex: 1 1 0px;
    }

.text[b-c618qhuam3] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    font-family: var(--title-font);
    height: 100%;
    font-weight: 600;
}

.title[b-c618qhuam3] {
    font-size: 14px;
}

.value[b-c618qhuam3] {
    font-size: 30px;
}

.small[b-c618qhuam3] {
    font-size: 14px;
}

.graph[b-c618qhuam3] {
    align-self: center;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    height: 47px;
    max-width: 120px;
    margin: 0 0 0 5px;
}

.data-bar-container[b-c618qhuam3] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: var(--page-background);
    border-radius: 4px;
    width: 9px;
}

.data-bar[b-c618qhuam3] {
    width: 9px;
    border-radius: 4px;
    background-color: var(--ok-background-color);
}
/* /Components/Overview/ReferentialData.razor.rz.scp.css */
.tile-content[b-cgyu36bscg] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--title-font);
    font-weight: 600;
    width: 100%;
}

.title[b-cgyu36bscg] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
    width: 100%;
    gap: 5px;
}

.lighter[b-cgyu36bscg] {
    color: var(--light-color);
}

.table[b-cgyu36bscg] {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: 20px;
    flex-grow: 1;
}

.table-cell[b-cgyu36bscg] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .table-cell svg[b-cgyu36bscg] {
        width: 50%;
    }

.cell-value[b-cgyu36bscg] {
    font-size: 30px;
}

.cell-text[b-cgyu36bscg] {
    font-size: 12px;
    font-family: var(--main-font);
}

.wait[b-cgyu36bscg] {
    width: 100%;
    margin: auto;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
}
/* /Components/Overview/TodoByProcedure.razor.rz.scp.css */
.tile-content[b-9n6axf7ba4] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-family: var(--title-font);
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.title[b-9n6axf7ba4] {
    font-size: 14px;
    font-weight: 600;
}

.graph[b-9n6axf7ba4] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    height: calc(100% - 36px);
}

.data-item[b-9n6axf7ba4] {
    color: var(--light-color);
    font-family: var(--main-font);
    width: 100%;
}

.data-title[b-9n6axf7ba4] {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-bar-container[b-9n6axf7ba4] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.data-bar-background[b-9n6axf7ba4] {
    background: var(--page-background);
    border-radius: 3px;
    margin-top: 6px;
    height: 5px;
    width: 100%;
}

.data-bar[b-9n6axf7ba4] {
    height: 100%;
    border-radius: 3px;
}

.even[b-9n6axf7ba4] {
    background-color: var(--strong-color);
}

.odd[b-9n6axf7ba4] {
    background-color: var(--alternative-strong-color);
}

.data-value[b-9n6axf7ba4] {
    margin: 2px auto 0 auto;
    font-size: 12px;
    font-weight: 600;
    min-width: 15px;
}
/* /Components/Overview/TodoByStatus.razor.rz.scp.css */
.tile-content[b-g6zua794u8] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-family: var(--title-font);
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.title[b-g6zua794u8] {
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

.graph[b-g6zua794u8] {
    margin: auto;
    width: 50%;
}

    .graph svg[b-g6zua794u8] {
        width: 100%;
        height: 100%;
    }

.legend[b-g6zua794u8] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    flex-wrap: wrap;
    width: 40%;
    gap: 5px 10px;
}

.legend-item[b-g6zua794u8] {
    display: flex;
    flex-direction: row;
}

.legend-bullet[b-g6zua794u8] {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    margin: auto 10px auto 0;
}

.legend-item[b-g6zua794u8] {
    color: var(--light-color);
    font-family: var(--main-font);
    font-size: 14px;
    font-weight: 400;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .tile-content[b-g6zua794u8] {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .graph[b-g6zua794u8] {
        width: 100%;
        max-height: calc(100% - 100px); /* 100px: room for legend in worst case scenario (three items on three lines) */
    }

    .legend[b-g6zua794u8] {
        width: 100%;
    }
}
/* /Components/Overview/TodoSummary.razor.rz.scp.css */
.tile-content[b-n3bnir2dry] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    font-family: var(--title-font);
    height: 100%;
    width: 100%;
}

.title[b-n3bnir2dry] {
    font-size: 16px;
    font-weight: 800;
}

.value[b-n3bnir2dry] {
    font-size: 34px;
    font-weight: 600;
    line-height: 32px;
}
/* /Components/Overview/WeeklyTaskBalance.razor.rz.scp.css */
.tile-content[b-m3mv8qf2wn] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--title-font);
    font-weight: 600;
    height: 100%;
    width: 100%;
    gap: 20px;
}

.title[b-m3mv8qf2wn] {
    font-size: 14px;
}

.value-detail-row[b-m3mv8qf2wn] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.value-detail-cell[b-m3mv8qf2wn] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    padding: 6px 10px;
    flex-grow: 1;
}

.affected[b-m3mv8qf2wn] {
    border: solid 1px var(--strong-color);
}

.completed[b-m3mv8qf2wn] {
    border: solid 1px var(--ok-background-color);
}

.cell-title[b-m3mv8qf2wn] {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-color);
    font-family: var(--main-font);
}

.number[b-m3mv8qf2wn] {
    font-size: 30px;
}

.graph[b-m3mv8qf2wn] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: calc(100% - 40px); /* 40px = left margin + right margin */
    margin: 0px 20px;
}

.data-bar-container[b-m3mv8qf2wn] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-grow: 1;
}

.data-bar-completed[b-m3mv8qf2wn] {
    align-self: flex-end;
    width: 6px;
    border-radius: 6px 6px 0 0;
    background-color: var(--ok-background-color);
    margin-left: 3px;
}

.data-bar-assigned[b-m3mv8qf2wn] {
    margin-top: 1px;
    align-self: flex-start;
    width: 6px;
    border-radius: 0 0 6px 6px;
    background-color: var(--strong-color);
    margin-left: 3px;
}

.axis[b-m3mv8qf2wn] {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: var(--light-color);
    font-family: var(--main-font);
}
/* /Components/Procedure/ProcedureInfo.razor.rz.scp.css */
.scrollbox[b-eomruewmsd] {
    width: 100%;
    height: calc(100% - 40px);
    overflow-y: hidden;
    overflow-x: hidden;
}

    .scrollbox:hover[b-eomruewmsd] {
        overflow-y: auto;
    }

.title-content[b-eomruewmsd] {
    display: none;
}

.title-text[b-eomruewmsd] {
    font-family: var(--title-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.open-button[b-eomruewmsd] {
    display: none;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .title-content[b-eomruewmsd] {
        width: calc(100% - 20px);
        display: flex;
        padding: 8px 10px;
        gap: 20px;
        justify-content: space-between;
        align-items: center;
        margin-left: 0px;
    }

    .large-view .title-content[b-eomruewmsd] {
        display: none;
    }

    .open-button[b-eomruewmsd] {
        display: block;
        float: right;
        padding-top: 14px;
        cursor: pointer;
    }
}
/* /Components/Procedure/ProcedureTasksList.razor.rz.scp.css */
 .title-content[b-tongz4kf98] {    
    display: none;
}

.title-text[b-tongz4kf98] {
    font-family: var(--title-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.title-count[b-tongz4kf98] {
    font-family: var(--main-font);
    font-size: 15px;
    color: var(--light-color);
} 

.scrollbox[b-tongz4kf98] {
    width: 100%;
    height: calc(100% - 40px);
    overflow-y: hidden;
    overflow-x: hidden;
}

    .scrollbox:hover[b-tongz4kf98] {
        overflow-y: auto;
    }

.section-content[b-tongz4kf98] {
    list-style-type: none;
    margin-block: 0px;
    margin-inline: 0px;
    padding-inline: 0px;
}

.item[b-tongz4kf98] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    gap: 10px;
    color: var(--main-color);
    /*max-height: 100px;*/
    width: 100%; 
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    overflow-x: hidden;
    overflow-y: hidden;
}

.item-name[b-tongz4kf98] {
    flex-grow: 1;
    font-family: var(--main-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/*.number {
    color: var(--light-color);
    font-family: var(--main-font);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
*/
.option[b-tongz4kf98] {
    padding: 4px 4px 4px 4px;
}

.icon-and-number[b-tongz4kf98] {
    display: flex;
    flex-direction: row;
    /* justify-content: center;*/
    align-items: center;
    color: var(--light-color);
    font-family: var(--main-font);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .title-content[b-tongz4kf98] {
        width: 100%;
        display: flex;
        padding: 8px 10px;
        gap: 20px;
        justify-content: space-between;
        align-items: center;
        margin-left: 0px;
        margin-bottom: 20px;
    }
}
/* /Components/Procedure/RoleContent.razor.rz.scp.css */
.separator[b-vdgpr04y57] {
    height: 1px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--light-border-color);
}

ul[b-vdgpr04y57] {
    list-style: none;
    list-style-position: outside;
    padding-inline-start:10px;
}

.position_text[b-vdgpr04y57] {
    max-width: 270px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--main-color);
    font-family: var(--main-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.worker_text[b-vdgpr04y57] {
    width: 260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--main-color);
    font-family: var(--main-font);
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.total_positions[b-vdgpr04y57] {
    color: var(--strong-color);
    font-family: var(--main-font);
    font-size: 12px;
    margin-left: 5px;
}

.total_workers[b-vdgpr04y57] {
    color: var(--strong-color);
    font-family: var(--main-font);
    font-size: 10px;
    margin-left: 5px;
}

.completeLoadButton[b-vdgpr04y57] {
    display: flex;
    padding: 8px 10px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: stretch;
    color: var(--strong-color);
    font-family: var(--main-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background-color: var(--main-background);
    cursor: pointer;
    border: none;
}

.path1[b-vdgpr04y57] {
    fill: var(--page-background);
    stroke: var(--alternative-color);
}

.path2[b-vdgpr04y57] {
    stroke: var(--strong-color);
}
/* /Components/Procedure/TaskDetail.razor.rz.scp.css */
.title[b-4jyxgzq5sj] {
    width: 100%;
    display: flex;
    padding: 8px 10px;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.title-content[b-4jyxgzq5sj] {
    display: inline-flex;
    padding: 8px 10px;
    align-items: center;
    gap: 5px;
    border-radius: 3px;
    background: var(--page-header-background);
    color: var(--main-color);
}

.title-text[b-4jyxgzq5sj] {
    color: var(--alternative-color );
    font-family: var(--main-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.button-back[b-4jyxgzq5sj] {
    display: inline-flex;
    padding: 8px 10px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 3px;
    border: 1px solid;
    border-color: var(--main-border-color);
    background: var(--button-background);
    cursor: pointer;
}

.text-button[b-4jyxgzq5sj] {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--main-color);
}

.tab-heigth-content[b-4jyxgzq5sj] {
    height: calc(100% - 130px);
    overflow-y: auto;
}

.open-button[b-4jyxgzq5sj] {
    display: none;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .large-view .title[b-4jyxgzq5sj] {
        display: none;
    }

    .open-button[b-4jyxgzq5sj] {
        display: block;
        float: right;
        padding-top: 14px;
        cursor: pointer;
    }
}
/* /Components/StartProcedureLeftColumn.razor.rz.scp.css */
.column[b-w4n4adop5z] {
    display: none;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .column[b-w4n4adop5z] {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 20px;
        position: fixed;
        width: 270px;
        height: calc(100% - 127px); /* 127px == top (117) + bottom margin (10) */
        overflow-y: auto;
        overflow-x: hidden;
        left: 20px;
        top: 117px;
        background-color: var(--main-background);
        border-radius: 10px;
        font-family: var(--main-font);
    }

    .column-title[b-w4n4adop5z] {
        color: var(--main-color);
        font-size: 15px;
        font-family: var(--title-font);
        font-weight: 900;
    }

    .section-title[b-w4n4adop5z] {
        background: linear-gradient(135deg, var(--main-border-color) 0%, #4318FF 100%);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        color: var(--alternative-color);
        font-weight: 700;
        padding: 10px;
        gap: 10px;
        margin-top: 20px;
    }

    .section-name[b-w4n4adop5z] {
        font-size: 18px;
    }

    .section-number[b-w4n4adop5z] {
        font-size: 30px;
        font-family: var(--title-font);
    }

    .line[b-w4n4adop5z] {
        display: flex;
        justify-content: space-between;
        font-weight: 600;
        white-space: nowrap;
    }

    .name[b-w4n4adop5z] {
        max-width: 170px;
        overflow: hidden;
        white-space: nowrap;
    }

    .number[b-w4n4adop5z] {
        border: var(--main-border);
        border-radius: 8px;
        color: var(--main-border-color);
        background: rgba(64, 112, 247, 0.05);
        text-align: center;
        font-size: 13px;
        height: 24px;
        min-width: 50px;
        padding: 4px;
    }

}
/* /Components/TaskInstanceItem.razor.rz.scp.css */
.main-block[b-nxafa8md8w] {
    background-color: var(--main-background);
    border: var(--light-border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    gap: 10px;
    width: 100%;
}

.block-header[b-nxafa8md8w] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.workflow-name[b-nxafa8md8w] {
    background: var(--button-hover-background);
    color: var(--strong-color);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    padding: 4px 5px;
    border-radius: 4px;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

.clickable[b-nxafa8md8w] {
    cursor: pointer;
}

.info[b-nxafa8md8w] {
    cursor: help;
}

.task-name[b-nxafa8md8w] {
    font-size: 18px;
    font-family: var(--title-font);
    font-weight: 800;
    overflow-x: hidden;
    max-width: 100%;
}

.instance-dates[b-nxafa8md8w] {
    margin-top: 10px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    color: var(--light-color);
    font-size: 12px;
    font-weight: 400;
}

.additional-data[b-nxafa8md8w] {
    color: var(--light-color);
    font-size: 12px;
}

.additional-data-content[b-nxafa8md8w] {
    font-weight: 400;
}

.additional-data-header[b-nxafa8md8w] {
    font-weight: 600;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .workflow-name[b-nxafa8md8w] {
        max-width: 100%;
    }
}
/* /Components/TaskInstanceList.razor.rz.scp.css */
.panel[b-vc3uu7qwnc] {
    width: 100%;
    margin-bottom: 100px;
}

.section-header[b-vc3uu7qwnc] {
    display: none;
}

.section[b-vc3uu7qwnc] {
    margin: 0px 20px;
}

.section-content[b-vc3uu7qwnc] {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: stretch;
}

.toolbar[b-vc3uu7qwnc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 27px;
}

.title[b-vc3uu7qwnc] {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 800;
    flex-grow: 1;
}

.buttons[b-vc3uu7qwnc] {
    display: flex;
    justify-content: flex-start;
    border: var(--light-border);
    border-radius: 16px;
}

.button-group[b-vc3uu7qwnc] {
    min-height: 27px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.separator[b-vc3uu7qwnc] {
    width: 1px;
    height: 16px;
    border-left: var(--light-border);
}

.toolbar-button[b-vc3uu7qwnc] {
    background: transparent;
    color: var(--main-color);
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    padding: 8px 10px;
}

.selected[b-vc3uu7qwnc] {
    background: var(--strong-color);
    color: var(--alternative-color);
}

.button-content[b-vc3uu7qwnc] {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    font-family: var(--main-font);
}

.button-text[b-vc3uu7qwnc] {
    display: none;
}

[b-vc3uu7qwnc] .calendar-cancel {
    background: var(--alternative-color);
    color: var(--main-color);
    border-radius: 3px;
    border: 0;
    padding: 8px 10px !important;
    font-family: var(--main-font);
    font-weight: 400 !important;
    cursor: pointer;
}

[b-vc3uu7qwnc] .calendar-apply {
    background: var(--strong-color);
    color: var(--alternative-color);
    border-radius: 3px;
    border: 0;
    padding: 8px 10px !important;
    font-family: var(--main-font);
    font-weight: 400 !important;
    cursor: pointer;
}

[b-vc3uu7qwnc] .toolbar-button svg {
    stroke: var(--light-color);
    fill: transparent;
}

[b-vc3uu7qwnc] .toolbar-button.selected svg {
    stroke: var(--alternative-color);
}

.bolder[b-vc3uu7qwnc] {
    font-weight: 700;
}

@media (max-width: 767px) { /* Override some styles to make calendar responsive */

    [b-vc3uu7qwnc] .daterangepicker {
        top: -14px !important;
        left: 0 !important;
        min-height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

        [b-vc3uu7qwnc] .daterangepicker .drp-buttons {
            width: 100%;
        }

        [b-vc3uu7qwnc] .daterangepicker .calendar-table th, .daterangepicker .calendar-table td[b-vc3uu7qwnc] {
            width: 37px !important;
            height: 32px !important;
            font-size: 15px !important;
        }

    .toolbar[b-vc3uu7qwnc] {
        position: fixed;
        top: 20px;
        left: 20px;
        width: calc(100% - 40px); /* 40px = left + right (20px each) */
        padding: 10px 20px;
        background: var(--alternative-color);
        border-radius: 3px;
    }

    .list-container[b-vc3uu7qwnc] {
        position: fixed;
        z-index: -1;
        width: 100%;
        height: calc(100% - 251px); /* 251 px == top (137) + footer(96) + bottom margin (20) */
        top: 137px;
        overflow-y: auto;
    }

    .apply-button[b-vc3uu7qwnc] {
        display: none;
        float: right;
        background: transparent;
        font-size: 12px;
        color: var(--main-color);
        font-weight: 500;
        padding: 8px 8px 0px 8px;
    }

        .apply-button.visible[b-vc3uu7qwnc] {
            display: block;
        }
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .panel[b-vc3uu7qwnc] {
        position: absolute;
        left: 320px;
        top: 117px;
        width: calc(100% - 356px); /* 356 px = 320px (left margin) + 36px (right margin) */
    }

    .title[b-vc3uu7qwnc] {
        display: none;
    }

    .button-group[b-vc3uu7qwnc] {
        gap: 10px;
    }

    .buttons[b-vc3uu7qwnc] {
        justify-content: space-between;
        border-width: 0;
        flex-grow: 1;
    }

    .toolbar-button[b-vc3uu7qwnc] {
        background: var(--main-background);
    }

    .apply-button[b-vc3uu7qwnc] {
        display: none;
    }

    .selected[b-vc3uu7qwnc] {
        background: var(--strong-color);
        color: var(--alternative-color);
    }

    .separator[b-vc3uu7qwnc] {
        display: none;
    }

    .button-text[b-vc3uu7qwnc] {
        display: initial;
    }

    .section[b-vc3uu7qwnc] {
        padding: 20px;
        margin: initial;
        margin-top: 20px;
        border-radius: 10px;
        border: var(--alternative-border);
        background: var(--button-background);
    }

    .section-header[b-vc3uu7qwnc] {
        margin: 0px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        font-weight: 500;
        font-size: 15px;
    }

    .section-title[b-vc3uu7qwnc] {
        color: var(--main-color);
        flex-grow: 1;
    }

    .section-content[b-vc3uu7qwnc] {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .number[b-vc3uu7qwnc] {
        color: var(--light-color);
    }

    .expander-arrow[b-vc3uu7qwnc] {
        transition: all ease 250ms;
        margin: auto;
    }

        .expander-arrow.expanded[b-vc3uu7qwnc] {
            transform: rotate(180deg);
        }

    [b-vc3uu7qwnc] .expander-arrow svg {
        margin: 1px;
    }
}
/* /Components/TasksFilter.razor.rz.scp.css */
.column[b-688pb9e9vv] {
    position: fixed;
    top: 62px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    margin: 20px;
    width: calc(100% - 40px); /* 40px = 2 * margin */
    background: var(--page-background);
}

.section-title[b-688pb9e9vv] {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--alternative-color);
    color: var(--main-color);
    border-radius: 3px;
    padding: 8px 20px;
}

    .section-title.toggled-off[b-688pb9e9vv] { /* toggle-on and toggle-off have opposite effect in small screen and in large screen */
        background: var(--strong-color);
        color: var(--alternative-color);
    }

.title[b-688pb9e9vv] {
    font-family: var(--title-font);
    font-size: 15px;
    font-weight: 700;
    flex-grow: 1;
}

.expander-arrow[b-688pb9e9vv] {
    transition: all ease 250ms;
    margin: auto;
}

    .expander-arrow.expanded[b-688pb9e9vv] {
        transform: rotate(180deg);
    }

[b-688pb9e9vv] .expander-arrow svg {
    fill: var(--main-color);
    margin: 2px 0px 2px 0px;
}

[b-688pb9e9vv] .expander-arrow.expanded svg {
    fill: var(--alternative-color);
}

.section-content[b-688pb9e9vv] {
    background: var(--alternative-color);
    list-style-type: none;
    margin-block: 0px;
    margin-inline: 0px;
    padding-inline: 0px;
    padding-top: 15px;
}

    .section-content.toggled-on[b-688pb9e9vv], .scrollbox.toggled-on[b-688pb9e9vv] { /* toggle-on and toggle-off have opposite effect in small screen and in large screen */
        display: none;
    }

    .section-content.toggled-off[b-688pb9e9vv] {
        position: fixed;
        z-index: 20;
        width: calc(100% - 40px); /* 40px = 20 + 20 (left + right) */
        height: calc(100% - 251px); /* 251 px == top (137) + footer(96) + bottom margin (20) */
        top: 137px;
        left: 20px;
        overflow-y: auto;
        overflow-x: hidden;
        border: var(--main-border);
        border-radius: 3px;
    }

.scrollbox.toggled-off[b-688pb9e9vv] {
    position: fixed;
    z-index: 20;
    width: calc(100% - 40px); /* 40px = 20 + 20 (left + right) */
    margin: 0px 20px;
    height: calc(100% - 251px); /* 251 px == top (137) + footer(96) + bottom margin (20) */
    top: 137px;
    left: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    border: var(--main-border);
    border-radius: 3px;
    background: var(--page-background);
}

.item[b-688pb9e9vv] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 5px 10px 20px;
    gap: 10px;
    color: var(--main-color);
    max-height: 100px;
    width: calc(100% + 2px); /* Make it go over the edge for the selection marker */
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    overflow-x: hidden;
    overflow-y: hidden;
}

    .item.selected[b-688pb9e9vv] {
        color: var(--strong-color);
        padding-right: 2px;
    }

.item-name[b-688pb9e9vv] {
    flex-grow: 1;
}

.number[b-688pb9e9vv] {
    color: var(--light-color);
}

[b-688pb9e9vv] .item svg {
    fill: var(--light-color);
}

[b-688pb9e9vv] .item.selected svg {
    fill: var(--strong-color);
}

[b-688pb9e9vv] .item.partially-selected svg {
    fill: var(--strong-color);
}

.marker[b-688pb9e9vv] {
    width: 0px;
    height: 30px;
    border-radius: 2px;
}

.item.selected .marker[b-688pb9e9vv] {
    border: 2px solid var(--strong-color);
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .column[b-688pb9e9vv] {
        position: fixed;
        left: 20px;
        top: 117px;
        flex-direction: column;
        padding: 20px 0px;
        gap: 10px;
        margin: initial;
        width: 270px;
        height: calc(100% - 127px); /* 127px == top (117) + bottom margin (10) */
        background-color: var(--main-background);
        border-radius: 10px;
    }

    .title[b-688pb9e9vv] {
        font-weight: 900;
    }

    .section-title[b-688pb9e9vv] {
        flex-grow: initial;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-height: 35px;
        margin: 15px 20px 0px 20px;
        cursor: pointer;
        background: initial;
        border-radius: initial;
        padding: initial;
    }

        .section-title.toggled-off[b-688pb9e9vv] { /* toggle-on and toggle-off have opposite effect in small screen and in large screen */
            margin: 15px 20px 10px 20px;
            background: initial;
            color: initial;
        }

    [b-688pb9e9vv] .expander-arrow.expanded svg {
        fill: var(--main-color);
    }

    .section-content[b-688pb9e9vv] {
        background: initial;
        width: 270px; /* 270px (column width) -20px (left padding) */
        list-style-type: none;
        margin-block: 0px;
        margin-inline: 0px;
        padding-inline: 0px;
        padding-top: 0px;
    }

    .scrollbox[b-688pb9e9vv] {
        width: 289px; /* 270px (column width) +19px (space for scrollbar on Edge. Check other browser?) */
        height: 100%;
        overflow-y: hidden;
        overflow-x: hidden;
    }

        .scrollbox:hover[b-688pb9e9vv] {
            overflow-y: auto;
        }

        .section-content.toggled-on[b-688pb9e9vv], .scrollbox.toggled-on[b-688pb9e9vv] {
            display: initial;
        }

        .section-content.toggled-off[b-688pb9e9vv], .scrollbox.toggled-off[b-688pb9e9vv] {
            display: none;
        }
}
/* /Components/UserMenu.razor.rz.scp.css */
.dropdown[b-7ompttt2h1] {
    background-color: var(--page-background);
    border: var(--main-border);
    border-radius: 5px;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 20px;
    height: calc(100% - 132px); /* 132px = bottom margin + footer */
    width: calc(100% - 40px); /* 40px = left + right margins */
    margin: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dropdown-list[b-7ompttt2h1] {
    padding: 0px;
    margin: 0px 0px 0px 0px;
    list-style-type: none;
    font-size: 15px;
    line-height: 17px;
}

.dropdown-item[b-7ompttt2h1] {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.item-label[b-7ompttt2h1] {
    font-family: var(--title-font);
    font-weight: 800;
    font-size: 14px;
}

.dropdown-subitem[b-7ompttt2h1] {
    font-size: 14px;
    word-wrap: break-word;
}

.dropdown-item-links[b-7ompttt2h1] {
    display: none;
}

.select-button[b-7ompttt2h1] {
    width: 100%;
    padding: 8px 10px;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 12px;
    border-radius: 3px;
    border: var(--light-border);
    background: var(--alternative-color);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

    .select-button:hover[b-7ompttt2h1] {
        border-color: var(--strong-color);
    }

    .select-button.expanded[b-7ompttt2h1] {
        border-color: var(--strong-color);
        color: var(--alternative-color);
        background: var(--strong-color);
    }

    .select-button .expander-arrow[b-7ompttt2h1] {
        margin: initial;
    }

.menu-button[b-7ompttt2h1] {
    display: flex;
    padding: 8px 10px;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
    border: var(--main-border);
    background: var(--alternative-color);
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
}

[b-7ompttt2h1] .menu-button svg {
    padding-top: 3px;
}

.hasTopBorder[b-7ompttt2h1] {
    border-top: var(--light-border);
    padding-top: 20px;
}

.hasBottomBorder[b-7ompttt2h1] {
    border-bottom: var(--light-border);
    padding-bottom: 20px;
}

.background[b-7ompttt2h1] {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent;
    z-index: 5;
}

.container[b-7ompttt2h1] {
    display: none;
}

.mobile-container[b-7ompttt2h1] {
    height: 53px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-bottom: var(--light-border);
}

.square[b-7ompttt2h1] {
    height: 30px;
    width: 30px;
    flex: none;
}

.button[b-7ompttt2h1] {
    border-radius: 3px;
    background: var(--main-background);
    color: var(--main-color);
    cursor: pointer;
    display: flex;
    transition: all ease 500ms;
}

    .button.expanded[b-7ompttt2h1] {
        background: var(--strong-color);
    }

.user[b-7ompttt2h1] {
    height: 30px;
    text-align: left;
    color: var(--main-color);
    flex-grow: 1;
    max-width: calc(100% - 44px);
}

.user-switch[b-7ompttt2h1] {
    padding: 8px 5px;
}

    .user p[b-7ompttt2h1], .user-switch p[b-7ompttt2h1] {
        font-weight: 600;
        font-size: 15px;
        margin-block: 0px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .user p.smaller[b-7ompttt2h1], .user-switch p.smaller[b-7ompttt2h1] {
            font-weight: 400;
            font-size: 12px;
        }

.expander-arrow[b-7ompttt2h1] {
    transition: all ease 250ms;
    margin: auto;
}

    .expander-arrow.expanded[b-7ompttt2h1] {
        transform: rotate(180deg);
    }

[b-7ompttt2h1] .expander-arrow svg {
    margin: 1px;
    fill: var(--main-color);
}

[b-7ompttt2h1] .expander-arrow.expanded svg {
    fill: var(--alternative-color);
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .dropdown[b-7ompttt2h1] {
        position: absolute;
        top: 63px;
        left: 19px;
        padding: 20px;
        width: 262px;
        height: auto;
        margin: 0px 0px 0px 0px;
    }

    .dropdown-list[b-7ompttt2h1] {
        max-height: 400px;
        max-width: 300px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .dropdown-item-links[b-7ompttt2h1] {
        font-size: 12px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

        .dropdown-item-links > div[b-7ompttt2h1] {
            cursor: pointer;
        }

    .container[b-7ompttt2h1] {
        height: 30px;
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }

    .mobile-container[b-7ompttt2h1] {
        display: none;
    }

    .mobile-only[b-7ompttt2h1] {
        display: none;
    }

    .user[b-7ompttt2h1] {
        max-width: 150px;
    }
}
/* /Components/Workflow/CysColumn.razor.rz.scp.css */

.column[b-78gtzf1d5m] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 94px); /* 94px == room for footer */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
    overflow-y: auto;
    overflow-x: auto;
    background-color: var(--page-background);
    font-family: var(--main-font);
    padding: 20px;
}

.hidden[b-78gtzf1d5m] {
    display: none;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .column[b-78gtzf1d5m] {
        background-color: var(--main-background);
        box-sizing: border-box;
        padding: 20px 10px;
        gap: 20px;
        position: fixed;
        z-index: -2;
        width: 270px;
        height: calc(100% - 127px); /* 127px == top (117) + bottom margin (10) */
        overflow-x: hidden;
        left: 20px;
        top: 117px;
        border-radius: 10px;
    }

    .hidden[b-78gtzf1d5m] {
        display: flex;
    }
}
/* /Components/Workflow/CysDescription.razor.rz.scp.css */
.default-text[b-9zfg0crrp4] {
    font-style: italic;
    font-size: 11px;
    margin: 0px 10px;
}

.description[b-9zfg0crrp4] {
    max-height: 400px;
}

/* Small devices (phones, 767px and down)*/
@media (max-width: 767px) {
    .description[b-9zfg0crrp4] {
        margin: 10px;
    }
}
/* /Components/Workflow/CysExpander.razor.rz.scp.css */

.expander-header[b-xf7krch55m] {
    align-items: center;
    align-content: flex-start;
    gap: 10px;
    padding: 5px 10px;
}

.title[b-xf7krch55m] {
    flex-grow: 1;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--title-font);
    line-height: 17px;
    transition: max-width ease 500ms;
}

.expander-content[b-xf7krch55m] {
    margin: 0px;
    background-color: var(--main-background);
    overflow: hidden;
}

/* Small devices (phones, 767px and down)*/
@media (max-width: 767px) {

    .expander[b-xf7krch55m] {
        display: none;
        flex-grow: 1;
    }

    .expander-header[b-xf7krch55m] {
        width: 100%;
        padding: 10px 20px;
        border-radius: 3px;
        background-color: var(--main-background);
    }

    .title[b-xf7krch55m] {
        font-size: 18px;
        line-height: 32px;
    }

    .open-button[b-xf7krch55m] {
        display: none;
    }

    .expander-arrow[b-xf7krch55m] {
        display: none;
    }

    .expander-content[b-xf7krch55m] {
        width: 100%;
        padding: 10px 20px;
        border-radius: 3px;
        margin-top: 20px;
        flex-grow: 1;
    }

    .mobile-visible[b-xf7krch55m] {
        display: flex;
        flex-direction: column;
    }
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .expander-header[b-xf7krch55m] {
        display: flex;
        height: 29px;
        cursor: pointer;
    }

    .open-button[b-xf7krch55m] {
        margin: auto;
    }

    .expander-arrow[b-xf7krch55m] {
        transition: all ease 250ms;
        margin: auto;
    }

        .expander-arrow.expanded[b-xf7krch55m] {
            transform: rotate(180deg);
        }

    [b-xf7krch55m] .expander-arrow svg {
        margin: 2px;
    }

    .expander-content[b-xf7krch55m] {
        height: 0px;
        transition: all ease 500ms;
    }

        .expander-content.expanded[b-xf7krch55m] {
            height: auto;
            padding: 10px 0px;
            overflow: auto;
        }

    [b-xf7krch55m] .large-view {
        min-width: 700px;
        min-height: 300px;
    }
}
/* /Components/Workflow/CysFilesAndFolders.razor.rz.scp.css */
.expander-header[b-u071srj5tq] {
    display: flex;
    align-items: center;
    align-content: flex-start;
    gap: 10px;
    padding: 10px;
    margin: 0px;
    cursor: pointer;
    border-radius: 3px 3px 0px 0px;
    border: var(--light-border);
    border-width: 0px;
}

    .expander-header.expanded[b-u071srj5tq] {
        border-width: 1px;
    }

.expander-arrow[b-u071srj5tq] {
    transition: all ease 250ms;
    margin: auto;
}

    .expander-arrow.expanded[b-u071srj5tq] {
        transform: rotate(180deg);
    }

[b-u071srj5tq] .expander-arrow svg {
    margin: 2px;
}

.icon[b-u071srj5tq] {
    padding: 3px 0px 0px 0px;
}

.title[b-u071srj5tq] {
    flex-grow: 1;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
}

    .title.expanded[b-u071srj5tq] {
        color: var(--strong-color);
        font-weight: 600;
    }

.button-bar[b-u071srj5tq] {
    display: none;
}
    .button-bar.expanded[b-u071srj5tq] {
        display: flex;
        align-items: center;
        align-content: flex-start;
        gap: 6px;
    }

.folder-button[b-u071srj5tq] {
    width: 19px;
    height: 19px;
    border-radius: 3px;
    cursor: pointer;
    padding: 0px 0px 0px 3px;
}
    .folder-button.selected[b-u071srj5tq] {
        background: var(--page-background);
    }
    .folder-button:hover[b-u071srj5tq] {
        background: var(--page-background);
    }

.expander-content[b-u071srj5tq] {
    height: 0px;
    margin: 0px;
    transition: all ease 500ms;
    overflow: hidden;
}

    .expander-content.expanded[b-u071srj5tq] {
        height: auto;
        overflow: auto;
        margin-bottom: 5px;
        border-radius: 0px 0px 3px 3px;
        border: var(--light-border);
        border-top-width: 0;
    }

.default-text[b-u071srj5tq] {
    font-style: italic;
    font-size: 11px;
    margin: 10px;
}

.file-list[b-u071srj5tq] {
    display: grid;
    margin: 0px 10px;
    max-height: 400px;
    overflow-y: auto;
}

.file-item[b-u071srj5tq] {
    display: flex;
    align-items: center;
    align-content: flex-start;
    gap: 5px;
    padding: 8px 0px;
    border-bottom: 1px solid var(--page-background);
    font-weight: 400;
    font-size: 13px;
}

    .file-item:last-child[b-u071srj5tq] {
        border-bottom-width: 0px;
    }

.file-icon[b-u071srj5tq] {
    cursor: pointer;
}

.file-name[b-u071srj5tq] {
    flex-grow: 1;
    cursor: pointer;
}

    .file-name > a[b-u071srj5tq] {
        color: var(--main-color);
    }
/* /Components/Workflow/CysSoftware.razor.rz.scp.css */
.default-text[b-kzvs2t0xyl] {
    font-style: italic;
    font-size: 11px;
    margin: 10px;
}

.software-list[b-kzvs2t0xyl] {
    display: grid;
    margin: 0;
    padding: 0px 10px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 3px;
    border: var(--light-border);
}

.software-item[b-kzvs2t0xyl] {
    display: flex;
    align-items: center;
    align-content: flex-start;
    gap: 10px;
    padding: 8px 0px;
    border-bottom: 1px solid var(--page-background);
    font-weight: 400;
    font-size: 13px;
}

    .software-item:last-child[b-kzvs2t0xyl] {
        border-bottom-width: 0px;
    }

.software-icon[b-kzvs2t0xyl]{
    min-width: 15px;
    max-width: 15px;
}

.software-execute[b-kzvs2t0xyl] {
    cursor: pointer;
}

.software-name[b-kzvs2t0xyl] {
    flex-grow: 1;
}
/* /Components/Workflow/RuleControl.razor.rz.scp.css */
.background[b-71d3ky4l8z] {
    background-color: var(--main-background);
}

    
/* /Components/Workflow/TaskInstanceValidation.razor.rz.scp.css */
.button-bar[b-cgpu57y2wn] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: var(--light-border);
    border-radius: 16px;
    padding: 5px 12px 5px 12px;
}

.separator[b-cgpu57y2wn] {
    width: 1px;
    height: 18px;
    border-left: var(--light-border);
    margin: 0px 8px;
}

.button[b-cgpu57y2wn] {
    background: transparent;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    margin: auto;
    margin-top: 3px;
}

[b-cgpu57y2wn] .popup-text {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 13px;
    line-height: 15px;
    color: var(--light-color);
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .button-bar[b-cgpu57y2wn] {
        max-width: 0px;
        overflow: hidden;
        max-height: 0px;
        padding: 0;
        border-width: 0;
    }
}
/* /Layouts/DialogLayout.razor.rz.scp.css */
.dialogBackground[b-cfgo8evbik] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
}

.middleAligner[b-cfgo8evbik] {
}

.dialog[b-cfgo8evbik] {
    background: #ffffff;
    height: 100%;
    width: 100%;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .dialogBackground[b-cfgo8evbik] {
        display: table;
        background: linear-gradient(107.56deg, #4070F7 0%, #2E29AD 100%);
    }

    .middleAligner[b-cfgo8evbik] {
        display: table-cell;
        vertical-align: middle;
    }

    .dialog[b-cfgo8evbik] {
        width: 1254px;
        height: 865px;
        border-radius: 5px;
        margin: auto;
    }
}
/* /Layouts/MainLayout.razor.rz.scp.css */
.page[b-n30uisc9qk] {
    background: var(--page-background);
    position: relative;
    display: flex;
    flex-direction: column;
}
/* /Pages/HrPage.razor.rz.scp.css */
.diagram[b-rkrohfzcf2] {
    position: fixed;
    top: 129px;
    left: 20px;
    width: calc(100% - 40px); /* 40px = 20 + 20 (left + right) */
    height: calc(100% - 251px); /* 251 px == top (137) + footer(96) + bottom margin (20) */
    overflow-y: auto;
    overflow-x: auto;
    transition: all ease 500ms;
}

.column[b-rkrohfzcf2] {
    position: fixed;
    width: calc(100% - 40px); /* 40px = 20 + 20 (left + right) */
    height: calc(100% - 251px); /* 251 px == top (137) + footer(96) + bottom margin (20) */
    top: 129px;
    left: 20px;
    overflow-y: auto;
    overflow-x: auto;
    border-radius: 10px;
}

.column-block[b-rkrohfzcf2] {
    padding: 10px;
    border-radius: 10px;
    background: var(--main-background);
}

.scrollbox[b-rkrohfzcf2] {
    width: 100%;
    height: calc(100% - 40px);
    overflow-y: hidden;
    overflow-x: hidden;
}

    .scrollbox:hover[b-rkrohfzcf2] {
        overflow-y: auto;
    }

.title[b-rkrohfzcf2] {
    position: fixed;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px); /* 40px = left + right (20px each) */
    padding: 15px 20px;
    background: var(--alternative-color);
    border-radius: 3px;
    color: var(--main-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toolbar[b-rkrohfzcf2] {
    position: fixed;
    top: 58px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    margin: 20px;
    width: calc(100% - 40px); /* 40px = 2 * margin */
}

/* Small devices */
@media (max-width: 767px) {
    .mobile-hide[b-rkrohfzcf2] {
        display: none;
    }

    .button[b-rkrohfzcf2] {
        background: var(--main-background);
        color: var(--main-color);
        flex-grow: 1;
        padding: 8px 10px;
        text-align: center;
        border-radius: 3px;
        font-family: var(--title-font);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
    }

        .button.selected[b-rkrohfzcf2] {
            background: var(--strong-color);
            color: var(--alternative-color);
            font-weight: 700;
        }
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .diagram[b-rkrohfzcf2] {
        top: 117px;
        left: 275px;
        width: calc(100% - 280px); 
        height: calc(100% - 127px); /* 127px == top (117) + bottom margin (10) */
        z-index: -3;
    }


    .column[b-rkrohfzcf2] {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /*align-items: stretch;*/
        padding: 10px 10px;
        gap: 20px;
        position: fixed;
        z-index: -2;
        width: 272px;
        height: calc(100% - 127px); /* 127px == top (117) + bottom margin (10) */
        overflow-y: auto;
        overflow-x: hidden;
        left: 20px;
        top: 117px;
        border-radius: 10px;
        font-family: var(--main-font);
        background: var(--page-background);
    }

    .column-block[b-rkrohfzcf2] {
        padding: 20px;
    }

    .title[b-rkrohfzcf2] {
        display: none;
    }

    .toolbar[b-rkrohfzcf2] {
        display: none;
    }
}
/* /Pages/Login/Login.razor.rz.scp.css */
.rok-logo[b-o5vak02glw] {
    background-image: url(Images/logo-webclient.png);
    height: 66px;
    width: 159px;
    margin: 50px 90px;
}

.login-form[b-o5vak02glw] {
    margin: 155px 40px;
    width: calc(100% - 80px);
}

.error[b-o5vak02glw] {
    margin-top: 20px;
    font-weight: 700;
    font-size: 13px;
    color: red;
}

.login-decoration[b-o5vak02glw] {
    display: none;
}

.img-deco[b-o5vak02glw] {
    background-image: url(Images/login-deco.png);
    width: 450px;
    height: 650px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 60px;
    margin-top: 60px;
    flex: 6 1 0;
}

.h1-deco[b-o5vak02glw] {
    margin-left: 40px;
    margin-top: 100px;
    font-family: var(--title-font);
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    /*flex: 1 1 0;*/
}

.h2-deco[b-o5vak02glw] {
    margin-left: 40px;
    font-family: var(--title-font);
    font-style: normal;
    font-weight: 700;
    font-size: 21.4px;
    line-height: 26px;
    flex: 1 1 0;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .rok-logo[b-o5vak02glw] {
        float: left;
    }

    .login-decoration[b-o5vak02glw] {
        float: right;
        width: 587px;
        height: 825px;
        margin: 20px;
        border-radius: 5px;
        background: linear-gradient(153.15deg, #4070F7 0%, #2E29AD 100%);
        background-size: 587px 825px;
        color: white;
        display: flex;
        flex-direction: column;
    }

    .login-form[b-o5vak02glw] {
        margin-top: 155px;
        margin-left: 90px;
        width: 447px;
        float: left;
    }
}
/* /Pages/OverviewPage.razor.rz.scp.css */

.panel[b-55nezn9xuy] {
    width: calc(100% - 40px);
    margin: 20px 20px 115px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item[b-55nezn9xuy] {
    background-color: var(--main-background);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
}

.strong[b-55nezn9xuy] {
    background: var(--page-header-background);
    color: var(--alternative-color);
}

.order1[b-55nezn9xuy] {
    order: 1;
}

.order2[b-55nezn9xuy] {
    order: 2;
}

.order3[b-55nezn9xuy] {
    order: 3;
}

.order4[b-55nezn9xuy] {
    order: 4;
}

.order5[b-55nezn9xuy] {
    order: 5;
}

.order6[b-55nezn9xuy] {
    order: 6;
}

.order7[b-55nezn9xuy] {
    order: 7;
}

.order8[b-55nezn9xuy] {
    order: 8;
}

.order9[b-55nezn9xuy] {
    order: 9;
}

.order10[b-55nezn9xuy] {
    order: 10;
}

.order11[b-55nezn9xuy] {
    order: 11;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .panel[b-55nezn9xuy] {
        position: fixed;
        left: 6%;
        top: 137px;
        width: 88%;
        height: calc(100% - 197px); /* 197 px = 137px (top margin) + 60px (page bottom margin) */
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 97px repeat(2, minmax(200px, 1fr));
        row-gap: 4%;
        column-gap: 4%;
        margin: 0;
    }

    .row-span-2[b-55nezn9xuy] {
        grid-row-start: span 2;
    }

    .col-span-2[b-55nezn9xuy] {
        grid-column-start: span 2;
    }

    .order1[b-55nezn9xuy] {
        order: 0;
    }

    .order2[b-55nezn9xuy] {
        order: 0;
    }

    .order3[b-55nezn9xuy] {
        order: 0;
    }

    .order4[b-55nezn9xuy] {
        order: 0;
    }

    .order5[b-55nezn9xuy] {
        order: 0;
    }

    .order6[b-55nezn9xuy] {
        order: 0;
    }

    .order7[b-55nezn9xuy] {
        order: 0;
    }

    .order8[b-55nezn9xuy] {
        order: 0;
    }

    .order9[b-55nezn9xuy] {
        order: 0;
    }

    .order10[b-55nezn9xuy] {
        order: 0;
    }

    .order11[b-55nezn9xuy] {
        order: 0;
    }
}
/* /Pages/ProcedureDetail.razor.rz.scp.css */
.diagram[b-z3chi4gfdx] {
    position: fixed;
    top: 129px;
    left: 20px;
    width: calc(100% - 40px); /* 40px = 20 + 20 (left + right) */
    height: calc(100% - 251px); /* 251 px == top (137) + footer(96) + bottom margin (20) */
    overflow-y: auto;
    overflow-x: auto;
    transition: all ease 500ms;
}

.column[b-z3chi4gfdx] {
    position: fixed;
    width: calc(100% - 40px); /* 40px = 20 + 20 (left + right) */
    height: calc(100% - 251px); /* 251 px == top (137) + footer(96) + bottom margin (20) */
    top: 129px;
    left: 20px;
    overflow-y: auto;
    overflow-x: auto;
    border-radius: 10px;
}

.title[b-z3chi4gfdx] {
    position: fixed;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px); /* 40px = left + right (20px each) */
    padding: 15px 20px;
    background: var(--alternative-color);
    border-radius: 3px;
    color: var(--main-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toolbar[b-z3chi4gfdx] {
    position: fixed;
    top: 58px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    margin: 20px;
    width: calc(100% - 40px); /* 40px = 2 * margin */
}

.column-block[b-z3chi4gfdx] {
    padding: 10px;
    border-radius: 10px;
    background: var(--main-background);
}

.overlay[b-z3chi4gfdx] {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
}

/* Small devices */
@media (max-width: 767px) {
    .mobile-hide[b-z3chi4gfdx] {
        display: none;
    }

    .button[b-z3chi4gfdx] {
        background: var(--main-background);
        color: var(--main-color);
        flex-grow: 1;
        padding: 8px 10px;
        text-align: center;
        border-radius: 3px;
        font-family: var(--title-font);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
    }

        .button.selected[b-z3chi4gfdx] {
            background: var(--strong-color);
            color: var(--alternative-color);
            font-weight: 700;
        }
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {

    .diagram[b-z3chi4gfdx] {
        top: 117px;
        left: 475px;
        width: calc(100% - 480px); /* 330px == left (310) + right margin (20) */
        height: calc(100% - 127px); /* 127px == top (117) + bottom margin (10) */
        z-index: -3;
    }


    .column[b-z3chi4gfdx] {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /*align-items: stretch;*/
        padding: 10px 10px;
        gap: 20px;
        position: fixed;
        z-index: -2;
        width: 452px;
        height: calc(100% - 127px); /* 127px == top (117) + bottom margin (10) */
        overflow-y: auto;
        overflow-x: hidden;
        left: 20px;
        top: 117px;
        border-radius: 10px;
        font-family: var(--main-font);
        background: var(--page-background);
    }

    .column-block[b-z3chi4gfdx] {
        padding: 20px;
    }

    .title[b-z3chi4gfdx] {
        display: none;
    }

    .toolbar[b-z3chi4gfdx] {
        display: none;
    }

    .taskinfo[b-z3chi4gfdx] {
        height: 60%;
    }

    .procedureFiles[b-z3chi4gfdx] {
        height: 35%;
    }

    .taskDetail[b-z3chi4gfdx] {
        height: 100%;
    }

    .large-view[b-z3chi4gfdx] {
        min-width: 700px;
        min-height: 300px;
    }
}
/* /Pages/StartProcedurePage.razor.rz.scp.css */
.panel[b-cdwra3xwpp] {
    width: 100%;
    margin-bottom: 100px;
}

.toolbar[b-cdwra3xwpp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 27px;
}

.title[b-cdwra3xwpp] {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 800;
    flex-grow: 1;
}

.buttons[b-cdwra3xwpp] {
    display: flex;
    justify-content: flex-start;
    border: var(--light-border);
    border-radius: 16px;
}

.button-group[b-cdwra3xwpp] {
    min-height: 27px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.content[b-cdwra3xwpp] {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0px 20px;
}

.block[b-cdwra3xwpp] {
    background-color: var(--main-background);
    border: var(--light-border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    width: 100%;
}

.block-line[b-cdwra3xwpp] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.block-footer[b-cdwra3xwpp] {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    color: var(--light-color);
}

[b-cdwra3xwpp] .block-footer svg {
    stroke: var(--light-color);
    fill: transparent;
}

.block-image[b-cdwra3xwpp] {
}

[b-cdwra3xwpp] .block-image svg linearGradient :nth-child(1) {
    stop-color: #4070F7;
}

[b-cdwra3xwpp] .block-image svg linearGradient :nth-child(2) {
    stop-color: #4318FF;
}

[b-cdwra3xwpp] .block-image svg :nth-child(2) {
    fill: white;
}

.clickable[b-cdwra3xwpp] {
    cursor: pointer;
}

.procedure-name[b-cdwra3xwpp] {
    font-size: 18px;
    font-family: var(--title-font);
    font-weight: 700;
}

.section-title[b-cdwra3xwpp] {
    font-weight: 600;
    font-size: 15px;
    line-height: 17px;
    color: var(--main-color);
    flex-grow: 1;
}

.popup-message-content[b-cdwra3xwpp] {
    margin: 10px;
}

/* Small devices */
@media (max-width: 767px) {

    .toolbar[b-cdwra3xwpp] {
        position: fixed;
        top: 20px;
        left: 20px;
        width: calc(100% - 40px); /* 40px = left + right (20px each) */
        padding: 10px 20px;
        background: var(--alternative-color);
        border-radius: 3px;
    }

    .content[b-cdwra3xwpp] {
        position: fixed;
        width: 100%;
        height: calc(100% - 203px); /* 203 px == top (89) + footer(94) + bottom margin (20) */
        top: 89px;
        overflow-y: auto;
    }
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .panel[b-cdwra3xwpp] {
        position: absolute;
        left: 320px;
        top: 117px;
        width: calc(100% - 356px); /* 356 px = 320px (left margin) + 36px (right margin) */
    }

    .title[b-cdwra3xwpp] {
        display: none;
    }

    .button-group[b-cdwra3xwpp] {
        gap: 10px;
    }

    .buttons[b-cdwra3xwpp] {
        justify-content: space-between;
        border-width: 0;
        flex-grow: 1;
    }

    .content[b-cdwra3xwpp] {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}
/* /Pages/ViewProceduresPage.razor.rz.scp.css */
.panel[b-2kt4fif8nb] {
    width: 100%;
    margin-bottom: 100px;
}

.toolbar[b-2kt4fif8nb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 27px;
}

.title[b-2kt4fif8nb] {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 800;
    flex-grow: 1;
}

.buttons[b-2kt4fif8nb] {
    display: flex;
    justify-content: flex-start;
    border: var(--light-border);
    border-radius: 16px;
}

.button-group[b-2kt4fif8nb] {
    min-height: 27px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.content[b-2kt4fif8nb] {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0px 20px;
}

.block[b-2kt4fif8nb] {
    background-color: var(--main-background);
    border: var(--light-border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    width: 100%;
}

.block-line[b-2kt4fif8nb] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.block-footer[b-2kt4fif8nb] {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    color: var(--light-color);
}

[b-2kt4fif8nb] .block-footer svg {
    stroke: var(--light-color);
    fill: transparent;
}

.procedure-name[b-2kt4fif8nb] {
    font-size: 18px;
    font-family: var(--title-font);
    font-weight: 700;
}

.section-title[b-2kt4fif8nb] {
    font-weight: 600;
    font-size: 15px;
    line-height: 17px;
    color: var(--main-color);
    flex-grow: 1;
}

.path1[b-2kt4fif8nb] {
    fill: var(--alternative-color);
}

.circle-bkg[b-2kt4fif8nb] {
    fill: var(--strong-color);
}

.svg-circle[b-2kt4fif8nb] {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
}

.svg-eye[b-2kt4fif8nb] {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
}

.block-image[b-2kt4fif8nb] {
    height: 30px;
    width: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.clickable[b-2kt4fif8nb] {
    cursor: pointer;
}

/* Small devices */
@media (max-width: 767px) {

    .toolbar[b-2kt4fif8nb] {
        position: fixed;
        top: 20px;
        left: 20px;
        width: calc(100% - 40px); /* 40px = left + right (20px each) */
        padding: 10px 20px;
        background: var(--alternative-color);
        border-radius: 3px;
    }

    .content[b-2kt4fif8nb] {
        position: fixed;
        width: 100%;
        height: calc(100% - 203px); /* 203 px == top (89) + footer(94) + bottom margin (20) */
        top: 89px;
        overflow-y: auto;
    }
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .panel[b-2kt4fif8nb] {
        position: absolute;
        left: 36px;
        top: 117px;
        width: calc(100% - 72px); /*  36px * 2 (right + left margin) */
    }

    .title[b-2kt4fif8nb] {
        display: none;
    }

    .button-group[b-2kt4fif8nb] {
        gap: 10px;
    }

    .buttons[b-2kt4fif8nb] {
        justify-content: space-between;
        border-width: 0;
        flex-grow: 1;
    }

    .content[b-2kt4fif8nb] {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}
/* /Pages/Workflow.razor.rz.scp.css */
.toolbar[b-px1pu4n0g3] {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px); /* 40px == left + right margins */
    padding: 10px 20px;
    border-radius: 3px;
    background-color: var(--main-background);
    position: fixed;
    top: 20px;
    left: 20px;
}

.mobile-title[b-px1pu4n0g3] {
    flex-grow: 1;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    font-family: var(--title-font);
}

.rules[b-px1pu4n0g3] {
    position: fixed;
    height: calc(100% - 203px); /* 207 px == top (93) + footer(94) + bottom margin (20) */
    width: 100%;
    top: 93px;
    overflow-y: auto;
}

.error-message-content[b-px1pu4n0g3] {
    margin: 10px;
}

/* Medium and large devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .toolbar[b-px1pu4n0g3] {
        display: block;
        width: initial;
        padding: initial;
        border-radius: initial;
        background-color: initial;
    }

    .mobile-title[b-px1pu4n0g3] {
        display: none;
    }

    .rules[b-px1pu4n0g3] {
        left: 320px;
        top: 97px;
        height: calc(100% - 117px); /* 127px == top (97) + bottom margin (20) */
        width: calc(100% - 356px); /* 356 px = 320px (left margin) + 36px (right margin) */
        z-index: -2;
    }

        .rules.no-cys[b-px1pu4n0g3] {
            left: 20px;
            width: calc(100% - 40px); /* 330px == left (20) + right margin (20) */
        }
}
