﻿/*#region Variables */

:root {
    --font-family-primary: "Segoe UI", "Segoe-UI", sans-serif;
    --sub-menu-ul-background: #665EFF;
    --font-color: #394153;
    --informational-urgency-background-color: #B0E4F2;
    --informational-urgency-border-color: #86BCD0;
    --low-urgency-background-color: #A2E3A5;
    --low-urgency-border-color: #76B97C;
    --medium-urgency-background-color: #FFD28D;
    --medium-urgency-border-color: #D1A462;
    --high-urgency-background-color: #F59A93;
    --high-urgency-border-color: #C06F69;
    --columns-left-width: 400px;
    --columns-right-width: 600px;
    --columns-inputs-table-height: 245px;
}

/*#endregion */

/*#region Core elements */

body {
    background: #03001C;
}

/*#endregion */

/*#region Headline */

div.headline-container,
div.headline {
    /*background: white;*/
    border-bottom: 1px solid #070032;
    padding: 15px 15px 15px 30px;
    /*background: linear-gradient(to right, #D2ECEC, #FFFFFF);*/
    background: #070032;
    user-select: none;
    margin-bottom: 20px;
}

    div.headline-container > img,
    div.headline > img {
        width: 48px;
        height: 48px;
        margin-right: 15px;
        float: left;
    }

    div.headline-container > span:nth-of-type(1),
    div.headline > span:nth-of-type(1) {
        font-weight: 500;
        line-height: 48px;
        font-size: 18pt;
        color: white;
    }

/*#endregion */

/*#region Containers */

div.page-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    min-height: 0;
    padding: 20px;
    /*border: 4px solid green;*/
    width: 100%;
}

div.table-container {
    /*border: 4px solid red;*/
    overflow-x: auto;
}

div.error-container,
div.container.error {
    font-family: var(--font-family-primary);
    padding: 15px 15px 15px 20px;
}

    div.error-container > span,
    div.container.error > span {
        display: block;
    }

        div.error-container > span:first-of-type,
        div.container.error > span:first-of-type {
            font-weight: 500;
            color: red;
        }

        div.error-container > span:last-of-type,
        div.container.error > span:last-of-type {
            font-size: 9pt;
            color: gray;
        }

div.filter-controls-container {
    display: flex;
    align-items: flex-start;
}

    div.filter-controls-container > input,
    div.filter-controls-container > div {
        display: inline-block;
        margin-right: 20px;
    }

    div.filter-controls-container > img.progress {
        height: 32px;
        max-height: 32px;
    }

div.form-buttons-container,
div.horizontal-controls-container {
    display: flex;
    align-items: flex-start;
    max-height: 32px;
    padding-right: 2px;
}

div.form-buttons-container,
div.horizontal-controls-container {
    height: 32px;
}

    div.form-buttons-container > *:not(:last-child),
    div.horizontal-controls-container > *:not(:last-child) {
        margin-right: 15px;
    }

    div.form-buttons-container > *,
    div.horizontal-controls-container > * {
        max-height: 32px;
    }

div.sub-container {
    color: white;
    /*border: 4px solid yellow;*/
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

div.std-btns-container {
    padding: 14px 20px 20px 20px;
    max-width: 650px;
    margin-bottom: 10px;
}

    div.std-btns-container > input.std-button {
        margin-right: 10px;
    }

    div.std-btns-container > img.loading-gif {
        display: inline-block;
        vertical-align: middle;
        height: 100%;
        margin-bottom: 4px;
    }

div.columns {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

    div.columns > div.left,
    div.columns > div.right {
        max-width: var(--columns-left-width);
        width: var(--columns-left-width);
        min-width: var(--columns-left-width);
        flex: 1;
    }

    div.columns > div.right {
        max-width: var(--columns-right-width);
        width: var(--columns-right-width);
        min-width: var(--columns-right-width);
    }

.columns-auto {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 600px;
    max-width: 1000px;
}

    .columns-auto > div {
        flex: 0 0 auto; /* don’t stretch */
        margin-bottom: 20px;
    }



div.container.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    /*border: 4px solid red;*/
}

/*#endregion */

/*#region Buttons */
input[type=button].std-button {
    width: 120px;
    height: 32px;
    border: none;
    font-family: var( --font-family-primary);
    background-color: #665eff;
    color: white;
    font-size: 11pt;
    transition: filter 0.2s ease;
}

    input[type=button].std-button.critical {
        background: #c0133b;
    }

    input[type=button].std-button:not(:disabled):hover {
        filter: brightness(110%);
        cursor: pointer;
    }


    input[type=button].std-button.critical:not(:disabled):hover {
        filter: brightness(110%);
    }

    input[type=button].std-button.wide {
        width: 130px;
    }

    input[type=button].std-button:disabled,
    input[type=button].std-button.critical:disabled {
        background-color: #2a2250;
        color: #6661a3;
        opacity: 0.6;
    }

        input[type=button].std-button:disabled:hover,
        input[type=button].std-button.critical:disabled:hover {
            cursor: default;
        }
/*#endregion */

/*#region Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select.std-select,
textarea {
    display: block;
    height: 32px;
    width: 350px;
    padding-left: 8px;
    font-family: var(--font-family-primary);
    font-size: 11pt;
    line-height: 1.5;
    color: #e0d8ff;
    background-color: #1a1233;
    background-clip: padding-box;
    border: 1px solid #2f0970;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    outline: none;
}

    input[type="text"]:disabled, input[type="number"]:disabled {
        background: #1e1e2f;
        border: 1px solid #444;
        color: #777;
        cursor: not-allowed;
    }

    input[type="text"]::placeholder,
    input[type="password"]::placeholder {
        color: #8e82ab;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    select.std-select:focus,
    textarea:focus {
        border-color: #5e2aff;
        outline: none;
        box-shadow: 0 0 0 .2rem rgba(94, 42, 255, 0.5);
    }

input[type="number"] {
    width: 100px;
}

input[type="text"].invalid {
    border: 1px solid red;
}

/* Custom styling for select */
.std-select {
    padding-left: 6px;
    font-family: var(--font-family-primary);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('../../img/arrow-204-16.png') no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 12px;
}

span.sys-field {
    width: 300px;
    display: block;
    background: black;
    color: white;
    margin-bottom: 8px;
    padding: 6px 8px 6px 8px;
    font-size: 10pt;
    font-family: Consolas, Arial;
}

textarea {
    width: 100%;
    height: 200px;
    padding: 4px 6px;
}

div.file-selector > div > input[type="button"] {
    margin-right: 10px;
}

div.file-selector > input[type="file"] {
    border: 1px solid yellow;
    display: none;
}

/*#endregion */

/*#region Modifiers */
.margin-bottom-small {
    display: block;
    margin-bottom: 10px;
}

.margin-bottom-medium {
    display: block;
    margin-bottom: 15px;
}

.margin-right-small {
    margin-right: 10px;
}

.margin-right-medium {
    margin-right: 15px;
}

.user-select-none {
    user-select: none;
}

.hidden {
    display: none !important;
}

.block {
    display: block;
}

.error {
    color: red;
}

.float-right {
    float: right;
}

.red-border {
    border: 2px solid red;
}

/*#endregion */

/*#region Sub menu */

div.sub-menu {
    margin-bottom: 15px;
}

    div.sub-menu > ul {
        display: inline-flex;
        list-style: none;
        font-family: var(--font-family-primary);
        padding: 0;
        margin: 0;
        text-transform: uppercase;
        color: var(--font-color);
        font-weight: 500;
        background: #665eff;
        font-size: 11pt;
    }

        div.sub-menu > ul > li {
            padding: 10px 20px;
            user-select: none;
            background: #665eff;
            color: #ffffff;
        }

            div.sub-menu > ul > li:hover {
                cursor: pointer;
                background: #2A0A5E;
            }

            div.sub-menu > ul > li.active {
                background: #20DC86;
                color: black;
            }

            div.sub-menu > ul > li[disabled=disabled] {
                background: #1A143B;
                color: #3E3A6D;
            }

                div.sub-menu > ul > li[disabled=disabled]:hover {
                    cursor: default;
                }


/*#endregion */

/*#region Matrix grid */

.matrix {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: var(--font-family-primary);
    padding: 15px;
    background: #F3F4F6;
    max-width: 1200px;
}

    .matrix .column {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .matrix .header {
        background: white;
        font-weight: 500;
        padding: 10px;
        text-align: center;
        border: 1px solid #ccc;
        width: 100%;
        user-select: none;
        min-height: 88px;
        margin-bottom: 10px;
        color: var(--font-color);
    }

    .matrix > .column > .header > span {
        display: block;
        font-size: 10.5pt;
        font-weight: 500;
    }

        .matrix > .column > .header > span:first-of-type {
            text-transform: uppercase;
            font-size: 13pt;
            font-weight: bold;
        }

    .matrix .cell {
        display: flex;
        background: #c8e6c9;
        border: 1px solid #ccc;
        text-align: center;
        width: 100%;
        min-height: 80px;
        max-height: 80px;
        min-width: 280px;
        user-select: none;
    }

        .matrix .cell > div {
            flex: 1;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            color: black;
            font-family: var(--font-family-primary);
        }

            .matrix .cell > div:first-of-type {
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                flex: auto;
                /*border: 4px solid red;*/
                margin-left: 15px;
            }


                .matrix .cell > div:first-of-type > span {
                    /*border: 4px solid blue;*/
                    display: inline-block;
                    text-align: left;
                    font-weight: 500;
                }

        .matrix .cell .technique-def-link:hover {
            /*  text-decoration: underline;
            cursor: pointer;*/
        }

        .matrix .cell > div:first-of-type > span:last-of-type {
            /*border: 1px solid red;*/
            font-weight: normal;
            font-size: 10pt;
        }

        .matrix .cell > div:last-of-type {
            flex: 3;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            /*border: 4px solid green;*/
        }

            .matrix .cell > div:last-of-type > span {
                display: inline-block;
                text-align: right;
                font-size: 30pt;
                font-weight: bold;
                margin: 0;
                width: 100%;
                text-align: right;
                padding: 0 15px 0 0;
                line-height: 1;
                transform: translateY(-5%);
                /*border: 4px solid orange;*/
            }


        .matrix .cell:not(:last-of-type) {
            margin-bottom: 10px;
        }

        .matrix .cell .technique-count-link:hover {
            cursor: pointer;
        }

        .matrix .cell.informational-urgency {
            background: var(--informational-urgency-background-color);
            border: 1px solid var(--informational-urgency-border-color);
        }

        .matrix .cell.low-urgency {
            background: var(--low-urgency-background-color);
            border: 1px solid var(--low-urgency-border-color);
        }

        .matrix .cell.medium-urgency {
            background: var(--medium-urgency-background-color);
            border: 1px solid var(--medium-urgency-border-color);
        }

        .matrix .cell.high-urgency {
            background: var(--high-urgency-background-color);
            border: 1px solid var(--high-urgency-border-color);
        }

        .matrix .cell.informational-urgency:hover {
            background: #C5ECF7;
        }

        .matrix .cell.low-urgency:hover {
            background: #B4EABC;
        }

        .matrix .cell.medium-urgency:hover {
            background: #FFDC9E;
        }

        .matrix .cell.high-urgency:hover {
            background: #F7A9A3;
        }


/*#endregion */

/*#region Details container (modal)*/

div.details-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    background: rgba(0, 0, 0, 0.7); /* Keeps children fully visible */
    z-index: 999;
    user-select: none;
    top: 0;
    left: 0;
}

.details-modal {
    position: absolute;
    width: 600px;
    height: 440px;
    background: white;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px #60116a;
    overflow: hidden;
    opacity: 1.0;
}

    .details-modal > .top {
        width: 100%;
        height: 40px;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        /*border: 1px solid green;*/
    }

        .details-modal > .top > img {
            width: 22px;
            height: 22px;
            opacity: 0.7;
            margin-right: 10px;
        }

            .details-modal > .top > img:hover {
                cursor: pointer;
            }


    .details-modal > .middle {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 20px 0 20px;
        /*border: 1px solid red;*/
    }

        .details-modal > .middle > img {
            width: 90px;
            height: 90px;
            margin-left: 15px;
        }

    .details-modal > .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        /*border: 1px solid blue;*/
        padding: 0 20px;
    }

        .details-modal > .bottom > span {
            display: block; /* Ensures both spans take full width */
            text-align: center; /* Centers text inside */
            padding: 8px 0;
            font-family: var(--font-family-primary);
            font-size: 11pt;
        }

            .details-modal > .bottom > span:first-of-type {
                font-weight: bold;
                font-size: 14pt;
            }

        .details-modal > .bottom > input {
            margin-top: 10px;
        }

/*#endregion */

/*#region Animation */

div.working-container,
div.container.working {
    /*border: 1px solid red;*/
    padding: 0 15px 15px 0;
}

    div.working-container > span,
    div.container.working > span {
        display: block;
        font-size: 11pt;
        font-family: var(--font-family-primary);
        margin-bottom: 8px;
        color: white;
    }

    div.working-container > img,
    div.container.working > img {
        height: 20px;
        width: 88px;
    }

    div.working-container.horizontal,
    div.container.working.horizontal {
        display: flex;
        align-items: flex-end;
        /*border: 1px solid red;*/
        height: 32px;
        max-height: 32px;
        padding: 0;
        gap: 20px;
        margin-right: 0;
    }

        div.working-container.horizontal > span,
        div.container.working.horizontal > span {
            height: auto;
            padding: 0;
            margin: 0;
            line-height: 1;
            display: flex;
            align-items: flex-end;
        }

        div.working-container.horizontal.no-text > span,
        div.container.working.horizontal.no-text > span {
            display: none;
        }

        div.working-container.horizontal > img,
        div.container.working.horizontal > img {
            display: block;
            margin-top: auto;
            margin-bottom: auto;
            height: auto;
            max-height: 100%;
        }

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50px);
    }

    60% {
        opacity: 1;
        transform: translate(-50%, 10px);
    }

    80% {
        transform: translate(-50%, -5px);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

/*#endregion */

/*#region Tables */

table.std-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-family: var(--font-family-primary);
    font-size: 11pt;
    /*border: 4px solid yellow;*/
}

    table.std-table thead th {
        background: #550DE6;
        color: white;
        user-select: none;
        text-align: left;
        font-weight: 500;
        font-size: 11pt;
        padding: 10px;
        position: relative;
        padding-right: 20px;
    }

th::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0.5;
}

th[data-sort-direction="asc"]::after {
    content: '▲';
    opacity: 1;
}

th[data-sort-direction="desc"]::after {
    content: '▼';
    opacity: 1;
}

table.std-table thead th:hover {
    cursor: pointer;
}

table.std-table thead th.action-header {
    text-align: center;
    padding-right: 10px;
}

table.std-table > tbody {
    /*border: 4px solid green;*/
    display: block;
    overflow: auto;
    width: 100%;
}

table.std-table tbody tr {
    height: 40px;
    background: #03001D;
    color: white;
    border-bottom: 1px solid #090055;
}

    table.std-table tbody tr:nth-child(even) {
        background: #05012E;
    }

    table.std-table tbody tr:hover {
        background-color: #2a0a5e;
        cursor: pointer;
    }

    table.std-table tbody tr.selected, table.std-table tbody tr.selected a {
        background-color: #DDDDDD !important;
        color: black;
    }

table.std-table tbody td {
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

table.std-table .system-header, table.std-table .system-data {
    background: #808080;
    color: white;
    display: none;
}

table.std-table thead {
    position: sticky;
    top: 0;
    background: #550DE6;
    z-index: 2;
}

table.std-table thead,
table.std-table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

/*#endregion */

/*#region Table elements */

table.std-table td.tictac {
    margin: 0;
    padding: 0;
}

    table.std-table td.tictac > span {
        padding: 4px 16px;
        font-size: 11pt;
        font-weight: 400;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-width: 120px;
        display: inline-block;
        color: black;
        margin-left: 10px;
    }

    table.std-table td.tictac.informational > span {
        background: lightblue;
        color: white;
        font-weight: 500;
    }

    table.std-table td.tictac.low > span {
        background: #4CFFB3;
        border: 1px solid #007141;
        color: black;
        font-weight: 500;
    }

    table.std-table td.tictac.medium > span {
        background: #FFB84D;
        /*border: 1px solid #D58000;*/
        color: black;
        font-weight: 500;
    }

    table.std-table td.tictac.high > span {
        background: #FF4C6D;
        /*border: 1px solid #EA0029;*/
        color: white;
        font-weight: 500;
    }

td.tictac.success > span {
    background: #4CFFB3;
}

td.tictac.failed > span,
td.tictac.timedout > span {
    background: #FF4C6D;
}

td.tictac.pending > span {
    background: #FFB84D;
}

td.tictac.new > span {
    background: #00B3FF;
}

table.std-table tbody td.action-data {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 14px;
}

    table.std-table tbody td.action-data > img {
        height: 24px;
        display: none;
    }

table.std-table tbody tr:not(.selected):hover td.action-data > img {
    display: inline;
    opacity: 0.6;
}

    table.std-table tbody tr:not(.selected):hover td.action-data > img:hover {
        opacity: 1;
    }

table.std-table tbody tr.selected td.action-data > img {
    display: inline;
    filter: brightness(0.2);
    opacity: 0.6;
}

table.std-table tbody tr.selected:hover td.action-data > img:hover {
    opacity: 1;
}

table.std-table > tbody > tr.selected > td.tictac > span {
    border: 1px solid #05012E;
}

table.std-table > tbody > tr[data-can-retry-provisioning="false"] > td.action-data > img.provision-retry {
    display: none;
}


/*#endregion */

/*#region Bubble filter control */
div.bubble-select {
    user-select: none;
}

    div.bubble-select > div:first-of-type {
        flex: 1;
        display: flex;
        flex-direction: column;
        background: #a9d9d7;
        font-family: var(--font-family-primary);
        display: inline-block;
        color: black;
        padding: 0 20px;
        height: 32px;
        border: 1px solid #a9d9d7;
    }

        div.bubble-select > div:first-of-type:hover {
            background: #b8dedc;
            border: 1px solid #b8dedc;
            cursor: pointer;
        }

        div.bubble-select > div:first-of-type > span {
            line-height: 30px;
        }

            div.bubble-select > div:first-of-type > span:last-of-type {
                font-weight: 500;
                font-size: 11pt;
            }

    div.bubble-select > div:last-of-type {
        position: absolute;
        width: fit-content;
        min-width: 180px;
        border: 1px solid #d1d5db;
        background: #ffffff;
        font-family: var(--font-family-primary);
        font-size: 11pt;
        box-shadow: 0 0 6px #d1d5db;
        overflow: hidden;
        opacity: 1;
        padding: 10px 20px 10px 10px;
        margin-top: 6px;
        display: none;
        z-index: 999;
    }

    div.bubble-select.expanded > div:last-of-type {
        position: absolute;
        display: block;
    }

    div.bubble-select > div:last-of-type > ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        div.bubble-select > div:last-of-type > ul > li {
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

            div.bubble-select > div:last-of-type > ul > li:last-of-type {
                margin-bottom: 10px;
            }

/*#endregion */

/*#region checkboxes */

div.std-checker {
    /*border: 1px solid red;*/
    display: flex;
    width: fit-content;
    align-items: flex-start;
    font-size: 11pt;
    gap: 10px;
}

    div.std-checker > span {
        /*border: 1px solid blue;*/
        line-height: 20px;
    }

    li.std-checker > div,
    div.std-checker > div {
        border: 1px solid #C4C9D0;
        width: 20px;
        height: 20px;
        display: inline-block;
        padding: 4px;
        background-size: calc(100% - 8px);
        background-position: center;
        background-repeat: no-repeat;
        box-sizing: border-box;
    }

    li.std-checker:not(.selected):hover > div,
    div.std-checker:not(.selected):hover > div {
        border: 1px solid #AFB7C0;
        background-image: url('/img/checkmark-48.png');
    }

    li.std-checker.selected > div,
    div.std-checker.selected > div {
        background-color: #665EFF;
        border: 1px solid #2f0970;
        background-image: url('/img/checkmark-48-black.png');
    }

    li.std-checker:hover,
    div.std-checker:hover {
        cursor: pointer;
    }

/*#endregion */

/*#region Text, labels and messages */
span, h1, h2, h3, label, p {
    color: white;
}

    span.header {
        display: block;
        font-size: 18pt;
        font-weight: bold;
        margin-bottom: 20px;
        text-decoration: underline;
        user-select: none;
    }

        span.header.no-underline {
            text-decoration: none;
        }

    span.modal-header {
        display: block;
        font-size: 16pt;
        font-weight: bold;
        margin-bottom: 20px;
        user-select: none;
    }



label {
    font-size: 11pt;
    margin-bottom: 4px;
    display: inline-block;
}

    label.block,
    span.block {
        display: block;
    }

div.info-message {
    height: 24px;
    /*border: 1px solid red;*/
    margin-top: 10px;
    margin-bottom: 10px;
}

    div.info-message > img,
    div.info-message > span {
        display: inline-block;
        vertical-align: top;
    }

    div.info-message > img {
        width: 24px;
        height: 24px;
    }

    div.info-message > span {
        line-height: 24px;
    }

/*#endregion */

/*#region Masking */

div.mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0px;
    left: 0px;
    z-index: 998;
}

    div.mask.transparent {
        background-color: rgba(0, 0, 0, 0);
        z-index: 998;
    }

/*#endregion */

/*#region Links */

a.std-link,
button.std-link {
    text-decoration: none;
    color: white;
    background: none;
    border: none;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 12pt;
}

    a.std-link:visited,
    button.std-link:visited {
        text-decoration: none;
        color: white;
    }

    a.std-link.bold,
    button.std-link.bold {
        font-weight: 500;
    }

    a.std-link:hover,
    button.std-link:hover {
        text-decoration: underline;
        cursor: pointer;
    }

/*#endregion */

/*#region Toast */


body > div#toast-container.toast-top-right {
    top: 98px;
    right: 34px;
}

    body > div#toast-container.toast-top-right > div.toast.toast-success {
        background-color: #20DC86 !important;
        opacity: 1 !important;
        color: black !important;
        box-shadow: none !important;
        font-weight: 400 !important;
        font-family: var(--font-family-primary) !important;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAA7EAAAOxAGVKw4bAAABU0lEQVRIia3UIUtsQRjG8R/rIjeIiIhcLiJ+CIMYDAYxGEw3XQTNBhGDiNgMBtNGEYOYxY8gInIxGG8wXEQMCpsUFlnkGM4ePMjMKnvmgReGOTP/Z+Y977x90mocy3jBU2K2AZwjQxNr+JHSYAdvHYOsMz5MBZ9CuwQv4i4FfBg3AXgbKykM9gPwDGforwqfRysAf8BEVfgQbgPwN/ypCq+hEYBnOO18r6QF8aoZqwr/KZyaNn7HNtXkeduT57abjgLwDMeox+DlV3iB0Qh8MQK/l7+HoDbw+mnDVcBkDP8D8FbHOKqHyKkuSyY1nETWHfiialYDNyjiL35hSbhq/mGkG7w43WYEkOEaj4H5Nma/gheqYytiEIvGd+FlbXe5STluMNiLQf0bJs+Y6QVeNumWrl0Jeg35j/9cXdcS9PhCdaz76PdNTKaCF6phTp6W6V4A7xwusGUtOY0hAAAAAElFTkSuQmCC) !important;
        user-select: none;
        border-radius: 0 !important;
    }


/*#endregion */

/*#region Breadcrumb */

div.breadcrumb {
    color: white;
    /*border: 1px solid yellow;*/
    padding: 4px 15px;
    margin-bottom: 15px;
    background: #080033;
}

    div.breadcrumb > ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 10pt;
        font-weight: 500;
    }

        div.breadcrumb > ul > li {
            margin-right: 8px;
            user-select: none;
        }

            div.breadcrumb > ul > li > a {
                color: white;
                text-decoration: none;
            }

                div.breadcrumb > ul > li > a:hover {
                    text-decoration: underline;
                }

/*#endregion */

/*#region Field Groups */

div.field-group > div:first-of-type:hover {
    cursor: pointer;
}

div.field-group.collapsed {
    padding: 10px 20px 10px 20px;
}

    div.field-group.collapsed > div:last-of-type {
        display: none;
    }

div.field-group.no-top-left-padding {
    padding-top: 0;
    padding-left: 0;
}

div.field > * {
    display: block;
}

div.field > label {
    margin-bottom: 8px;
    font-size: 10pt;
    font-weight: 500;
}

div.field.checkbox {
    padding: 0;
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    gap: 10px;
}

div.field-group div.field.checkbox > input[type=checkbox] {
    display: inline;
    padding: 0;
    margin: 0;
    width: 20px;
    height: 20px;
}

div.field-group div.field.checkbox > label {
    font-weight: normal;
    font-size: var(--font-size);
    margin: 0;
}

div.field-group {
    padding: 10px 20px 20px 20px;
    max-width: 650px;
    margin-bottom: 10px;
    gap: 10px;
}

    div.field-group > img.loading-gif {
        display: inline-block;
        vertical-align: middle;
        height: 20px;
        width: 88px;
        margin-bottom: 2px;
    }

.margin-top-bottom-medium {
    margin-top: 15px;
    margin-bottom: 15px
}

.margin-top-medium {
    margin-top: 15px
}

.margin-bottom-large {
    margin-bottom: 20px
}

.margin-bottom-medium {
    margin-bottom: 15px
}

.margin-bottom-small {
    margin-bottom: 10px
}

.margin-top-small {
    margin-top: 10px
}

/*#endregion */

/*#region Modal dialogs */

div.add-input-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -90%);
    border: 1px solid #5615EA;
    z-index: 999;
    background: #03001C;
    padding: 20px 80px
}

    div.add-input-modal > input,
    div.add-input-modal > select {
        margin-bottom: 20px;
    }

/*#endregion */

/*#region Scrollbars */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #03001C;
}

::-webkit-scrollbar-thumb {
    background: #7b5cff;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #7b5cff;
    }

* {
    scrollbar-color: #7b5cff #03001C;
}

/*#endregion */