.flash-container.fixed {
    padding: 20px;
    position: fixed;
    z-index: 10000;
    width: 100%;
    bottom: 0;
    left: 0
}

.flash-container:empty {
    display: none
}

#nprogress {
    pointer-events: none
}

    #nprogress .bar {
        background: #29d;
        position: fixed;
        z-index: 1031;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px
    }

    #nprogress .peg {
        display: block;
        position: absolute;
        right: 0;
        width: 100px;
        height: 100%;
        box-shadow: 0 0 10px #29d,0 0 5px #29d;
        opacity: 1;
        transform: rotate(3deg) translateY(-4px)
    }

    #nprogress .spinner {
        display: block;
        position: fixed;
        z-index: 1031;
        top: 15px;
        right: 15px
    }

    #nprogress .spinner-icon {
        width: 18px;
        height: 18px;
        box-sizing: border-box;
        border: 2px solid transparent;
        border-top-color: #29d;
        border-left-color: #29d;
        border-radius: 50%;
        animation: nprogress-spinner .4s linear infinite
    }

.nprogress-custom-parent {
    overflow: hidden;
    position: relative
}

    .nprogress-custom-parent #nprogress .bar, .nprogress-custom-parent #nprogress .spinner {
        position: absolute
    }

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.counter {
    position: fixed;
    top: 0;
    left: 0
}

#nprogress .bar {
    height: 3px;
    background-color: var(--theme-cta,#041E42)
}

.modal-container .cover, .modal-container .modal, .modal-container .modal-fixed-parent {
    z-index: 100
}

.modal-container .modal-fixed-parent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: transparent
}

.modal-container:not(.modal-full) .modal-fixed-parent {
    display: flex;
    align-items: center;
    justify-content: center
}

.modal-container:not(.modal-full) dialog.modal {
    max-width: 95%;
    margin: auto
}

.modal-container dialog.modal.isLegacyEdge {
    overflow-y: visible
}

.modal-container dialog.modal {
    background-color: var(--theme-bg-secondary,#fff);
    border: none;
    border-radius: 10px;
    bottom: auto;
    box-shadow: 0 1px 5px rgba(0,0,0,.1);
    max-height: 95%;
    overflow-y: auto;
    padding: 40px;
    color: var(--theme-txt,#21242a);
    pointer-events: auto
}

    .modal-container dialog.modal > .close, .modal-container dialog.modal > i.icon-close, .modal-container dialog.modal i.icon-close.modal-close {
        cursor: pointer;
        position: absolute;
        right: 40px;
        top: 40px;
        transition: transform .2s ease;
        color: var(--theme-txt,#21242a)
    }

        .modal-container dialog.modal > .close:hover, .modal-container dialog.modal > i.icon-close:hover, .modal-container dialog.modal i.icon-close.modal-close:hover {
            transform: scale(1.3)
        }

.modal-container span.cover {
    background-color: var(--theme-bg,#eaeef1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    bottom: 0;
    left: 0;
    opacity: .6;
    position: fixed;
    right: 0;
    top: 0
}

    .modal-container span.cover.fade-enter, .modal-container span.cover.fade-leave, .modal-container span.cover.fade-leave-to {
        opacity: 0
    }

.modal-container.overflow dialog.modal {
    overflow: visible
}

.modal-container.modal-full dialog.modal {
    position: fixed;
    border-radius: 0;
    height: calc(100vh - 100px);
    left: 0;
    margin: 0;
    overflow: auto;
    right: 0;
    top: 100px;
    width: 100%;
    bottom: 0
}

.modal-container.modal-full .cover {
    opacity: .6
}

.modal-container.wide dialog.modal {
    min-width: 700px;
    max-width: 90%
}

.error header {
    display: flex;
    align-items: center;
    margin: 5px 0 20px
}

.error .url {
    font-family: Monaco,monospace;
    font-size: .9em
}

.error .status {
    margin-right: 5px;
    background-color: #fff1b3;
    color: #131518;
    font-size: 1.2em
}

.error blockquote {
    font-family: NotoLight,Arial,Helvetica,sans-serif;
    background-color: var(--theme-bg,#fbfcfc);
    color: var(--theme-header,#7f8ca4);
    line-height: 1.3em;
    font-size: 1.2em;
    padding: 5px;
    padding-left: 10px
}

details summary {
    outline: 0;
    cursor: pointer
}

details .trace {
    margin-top: 0;
    background-color: var(--theme-bg-syntax,#fefefe);
    word-break: break-word
}

.api-errors.modal-container span.cover {
    z-index: 99999998
}

.api-errors.modal-container dialog.modal {
    min-width: 50%;
    max-width: 900px
}

.api-errors.modal-container span.modal-fixed-parent {
    z-index: 99999999
}

    .api-errors.modal-container span.modal-fixed-parent h1 {
        margin-bottom: 20px
    }

#topbar-nav {
    background: var(--theme-bg-secondary,#f5f6f7);
    border: 1px solid var(--theme-border,#eaeef1)
}

    #topbar-nav .sub-nav-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px;
        padding-bottom: 10px
    }

    #topbar-nav .nav-button {
        background-color: var(--theme-bg-secondary,#fbfcfc);
        border-color: var(--theme-bg-secondary,#f5f6f7);
        color: var(--theme-txt,#929db1);
        border-radius: 20px;
        margin: 0 5px 5px 0;
        white-space: nowrap
    }

        #topbar-nav .nav-button:hover {
            background-color: var(--theme-cta,#041E42);
            color: #fefefe
        }

    #topbar-nav nav {
        border-bottom: 1px solid var(--theme-border,#eaeef1)
    }

    #topbar-nav a {
        color: #131518
    }

    #topbar-nav .row {
        margin: 0
    }

    #topbar-nav h2 {
        color: var(--theme-cta,#041E42);
        cursor: pointer;
        margin-top: 8px
    }

    #topbar-nav button {
        margin: 5px
    }

    #topbar-nav .slide-down-enter-active {
        pointer-events: none
    }

    #topbar-nav #button-user {
        height: 32px;
        width: 32px;
        min-width: 32px
    }

    #topbar-nav #pop-up-apps {
        background: var(--theme-bg-secondary,#fefefe);
        border: 1px solid var(--theme-border,#eaeef1);
        left: -220px;
        position: absolute;
        width: 260px;
        z-index: 100000
    }

        #topbar-nav #pop-up-apps:after, #topbar-nav #pop-up-apps:before {
            content: "";
            display: block;
            left: 223px;
            position: absolute
        }

        #topbar-nav #pop-up-apps:before {
            border-bottom: 5px solid var(--theme-border,#eaeef1);
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            margin-left: 0;
            top: -6px;
            z-index: 4
        }

        #topbar-nav #pop-up-apps:after {
            border-bottom: 5px solid var(--theme-bg-secondary,#fff);
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            margin-left: 2px;
            top: -5px;
            z-index: 5
        }

        #topbar-nav #pop-up-apps img {
            padding: 0 20px 5px
        }

        #topbar-nav #pop-up-apps section {
            align-items: center;
            display: flex;
            justify-content: space-between;
            padding: 0 20px
        }

            #topbar-nav #pop-up-apps section .app-nav-label {
                margin-top: 0;
                padding: 15px 0
            }

        #topbar-nav #pop-up-apps .selected-app-check {
            color: var(--theme-cta,#041E42)
        }

        #topbar-nav #pop-up-apps .nav-row {
            cursor: pointer;
            margin: 0;
            padding: 0
        }

            #topbar-nav #pop-up-apps .nav-row section:last-of-type {
                border-bottom: 1px solid var(--theme-border,#eaeef1)
            }

            #topbar-nav #pop-up-apps .nav-row section:hover {
                background: var(--theme-cta,#041E42);
                color: var(--theme-bg,#fefefe)
            }

        #topbar-nav #pop-up-apps div {
            padding: 5px 0
        }

    #topbar-nav #nav-logo {
        height: 40px;
        margin: 2px 16px 0 4px;
        width: 120px
    }

    #topbar-nav #apps-nav .arrow {
        align-items: center;
        margin-left: 2px;
        margin-top: 5px
    }

    #topbar-nav #apps-nav div {
        align-items: center;
        margin-left: 5px;
        margin-top: 10px
    }

    #topbar-nav #app-menu-arrow {
        cursor: pointer;
        position: relative
    }

        #topbar-nav #app-menu-arrow .open-nav {
            transform: rotateX(-180deg);
            transition: transform .3s ease-out
        }

        #topbar-nav #app-menu-arrow .close-nav {
            transition: transform .3s ease-out
        }

    #topbar-nav .selected, #topbar-nav a.nav-button.router-link-active {
        background: var(--theme-cta,#041E42);
        color: #fefefe
    }

    #topbar-nav #pop-up-user {
        background: var(--theme-bg-secondary,#fefefe);
        border: 1px solid var(--theme-border,#eaeef1);
        max-width: 250px;
        position: absolute;
        right: 0;
        z-index: 100000;
		display: none;
    }

        #topbar-nav #pop-up-user .user-section {
            border-bottom: 1px solid var(--theme-border,#eaeef1)
        }

        #topbar-nav #pop-up-user .version-section {
            border-top: 1px solid var(--theme-border,#eaeef1)
        }

        #topbar-nav #pop-up-user .nav-row {
            cursor: pointer;
            padding: 0
        }

            #topbar-nav #pop-up-user .nav-row :hover {
                background: var(--theme-cta,#041E42);
                color: #fefefe
            }

        #topbar-nav #pop-up-user .row {
            pointer: cursor
        }

        #topbar-nav #pop-up-user div {
            padding: 5px
        }

        #topbar-nav #pop-up-user section {
            margin-bottom: 5px
        }

    #topbar-nav #shark-fin-user {
        background: var(--theme-bg-secondary,#fefefe);
        border: 1px solid var(--theme-border,#eaeef1);
        clip: rect(0,7px,7px,0);
        height: 30px;
        position: absolute;
        right: 18px;
        top: 1px;
        transform: rotate(45deg);
        width: 30px;
        z-index: 1000000;
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg)
    }

    #topbar-nav .breadcrumb-list {
        align-items: center;
        border-bottom: 1px solid 1px solid var(--theme-border,#eaeef1);
        border-top: 1px solid 1px solid var(--theme-border,#eaeef1);
        display: flex;
        height: 40px;
        padding: 0 15px;
        width: 100%
    }

        #topbar-nav .breadcrumb-list > * {
            color: var(--theme-txt,#474f59);
            flex-grow: 0;
            font-size: 12px;
            font-weight: 600;
            height: 40px;
            line-height: 40px;
            opacity: .5;
            padding: 0 5px;
            text-transform: uppercase;
            transition: opacity .3s ease-in-out;
            vertical-align: middle;
            font-family: NotoSemiBold,Arial,Helvetica,sans-serif
        }

        #topbar-nav .breadcrumb-list > :not(.icon-chevron-right):not(.badge) {
            cursor: pointer
        }

            #topbar-nav .breadcrumb-list > :not(.icon-chevron-right):not(.badge):hover {
                opacity: .8
            }

        #topbar-nav .breadcrumb-list > .icon-chevron-right {
            font-size: .6em
        }

        #topbar-nav .breadcrumb-list > .icon-home {
            font-size: 14px
        }

        #topbar-nav .breadcrumb-list > .badge {
            opacity: 1;
            padding: 5px;
            line-height: 1em;
            height: auto;
            border-radius: 5px;
            color: var(--theme-bg-secondary,#fefefe)
        }

ul.bread-crumbs {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    padding: 0;
    padding-right: 15px
}

    ul.bread-crumbs li {
        margin-right: 5px
    }

        ul.bread-crumbs li a {
            text-transform: uppercase;
            text-shadow: 1px 1px 1px var(--theme-bg,#fbfcfc);
            color: var(--theme-header,#929db1);
            font-family: $font-header
        }

        ul.bread-crumbs li i {
            font-size: .7em;
            margin-left: 5px
        }

        ul.bread-crumbs li:last-child a {
            color: var(--theme-header,#131518)
        }

        ul.bread-crumbs li:last-child i {
            display: none
        }

.form-inline label.type-ahead-label, .inline-form label.type-ahead-label {
    width: auto;
    flex-basis: 1
}

    .form-inline label.type-ahead-label input, .inline-form label.type-ahead-label input {
        width: auto
    }

label.type-ahead-label.input-group > input[type=search].search-input, label.type-ahead-label > input[type=search].search-input {
    margin-right: 0
}

label.type-ahead-label {
    position: relative;
    display: inline-flex;
    width: 100%;
    overflow: visible;
    background-color: var(--theme-bg-input,#fefefe);
    font-size: .8em;
    align-items: center;
    border-radius: 3px;
    padding: 0
}

    label.type-ahead-label.disabled span.arrows {
        cursor: not-allowed
    }

    label.type-ahead-label > span:first-child {
        margin-right: 15px;
        font-size: inherit;
        text-transform: inherit;
        white-space: nowrap;
        font-weight: inherit;
        font-family: inherit
    }

    label.type-ahead-label:focus-within {
        outline: none
    }

    label.type-ahead-label:focus {
        box-shadow: none;
        outline: none
    }

    label.type-ahead-label > input[type=search] {
        box-shadow: none;
        background-color: var(--theme-bg-input,#fefefe);
        width: 100%;
        color: var(--theme-txt,#21242a);
        height: 44px;
        padding: 0 36px 0 15px;
        border: 2px solid var(--theme-border,#eaeef1);
        border-radius: 3px;
        transition: border-color .3s ease-in-out
    }

        label.type-ahead-label > input[type=search]:focus {
            border-color: var(--theme-cta,#041E42);
            outline: none
        }

        label.type-ahead-label > input[type=search][disabled] {
            cursor: not-allowed
        }

    label.type-ahead-label.input-group {
        padding-right: 36px
    }

        label.type-ahead-label.input-group > .matches-wrapper {
            top: calc(100% + 2px)
        }

    label.type-ahead-label span.arrows {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        width: 36px;
        cursor: pointer
    }

        label.type-ahead-label span.arrows:before {
            top: calc(50% - 7px);
            border-bottom: 6px solid var(--theme-border,#929db1)
        }

        label.type-ahead-label span.arrows:after, label.type-ahead-label span.arrows:before {
            position: absolute;
            content: "";
            width: 0;
            height: 0;
            right: 15px;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent
        }

        label.type-ahead-label span.arrows:after {
            top: calc(50% + 3px);
            border-top: 6px solid var(--theme-border,#929db1)
        }

    label.type-ahead-label.not-removable input[type=search]::-webkit-search-cancel-button {
        -webkit-appearance: none
    }

.matches-wrapper {
    position: fixed;
    min-width: 200px;
    max-height: 450px;
    z-index: 10000;
    border: 1px solid var(--theme-border,#f5f6f7);
    box-shadow: 0 1px 5px rgba(0,0,0,.1);
    padding: 0;
    overflow-y: auto;
    background-color: var(--theme-bg-input,#fefefe)
}

    .matches-wrapper .actions {
        background: var(--theme-bg-input,#fefefe);
        padding: 15px;
        margin-bottom: 0;
        border-top: 1px solid var(--theme-border,#eaeef1)
    }

        .matches-wrapper .actions button {
            font-size: 12px
        }

    .matches-wrapper ul.matches {
        display: flex;
        flex-direction: column;
        font-size: 15px;
        max-height: 360px;
        color: var(--theme-txt,#131518);
        list-style-type: none;
        margin: 0;
        padding: 0;
        font-weight: 500
    }

        .matches-wrapper ul.matches > li.grouping {
            padding-left: 5px;
            padding-right: 5px;
            font-family: NotoSemiBold,Arial,Helvetica,sans-serif
        }

        .matches-wrapper ul.matches > li {
            padding: 15px;
            line-height: 1em;
            vertical-align: middle;
            white-space: normal
        }

            .matches-wrapper ul.matches > li > mark {
                font-weight: 800;
                background-color: inherit
            }

            .matches-wrapper ul.matches > li.option {
                transition: all .3s ease-in-out;
                cursor: pointer;
                display: inline-flex;
                align-items: center;
                width: 100%;
                min-height: 45px
            }

                .matches-wrapper ul.matches > li.option > input[type=checkbox].multiselect {
                    margin-right: 5px;
                    pointer-events: none
                }

                .matches-wrapper ul.matches > li.option:hover {
                    background-color: var(--theme-cta,#e0f4ff)
                }

                .matches-wrapper ul.matches > li.option.selected {
                    background-color: var(--theme-cta,#59c2ff);
                    color: #fefefe
                }

.tethys-type-ahead-async .type-ahead-async-spinner-container {
    height: 45px;
    min-height: 45px;
    align-items: center
}

    .tethys-type-ahead-async .type-ahead-async-spinner-container.pointer, .tethys-type-ahead-async .type-ahead-async-spinner-container i.icon-plus {
        cursor: pointer
    }

.impersonate-container {
    z-index: 100;
    position: fixed;
    width: auto !important;
    bottom: 5px;
    left: 5px
}

.junction-impersonate {
    z-index: 100000
}

body, html {
    background-color: var(--theme-bg,#eaeef1);
    margin: 0;
    padding: 0
}

    body h3.header, html h3.header {
        border-left: 2px solid var(--theme-border,#eaeef1);
        margin-bottom: 15px;
        margin-top: 5px;
        padding-left: 7.5px
    }

    body .content, html .content {
        padding: 15px
    }

        body .content .well .header-bar, html .content .well .header-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px
        }

            body .content .well .header-bar .btn.new-link, html .content .well .header-bar .btn.new-link {
                align-self: flex-end
            }

        body .content cite, html .content cite {
            background-color: #fff4d6;
            font-style: normal;
            font-weight: inherit !important
        }

        body .content .bread-crumbs, html .content .bread-crumbs {
            padding-left: 30px
        }

.file-drop {
    border: 2px dashed var(--theme-border,#c2cdd9);
    user-select: none;
    -webkit-user-select: none;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    min-width: 400px;
    font-weight: 900;
    color: #7f8fa4;
    cursor: pointer;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center
}

    .file-drop.disabled {
        cursor: not-allowed
    }

    .file-drop.drag-over {
        border-color: #17ad79
    }

    .file-drop > i {
        vertical-align: middle;
        font-size: 50px;
        color: #eaeef1
    }

    .file-drop input[type=file] {
        width: .1px;
        height: .1px;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        z-index: -1
    }

.popover-container {
    align-items: center;
    display: inline-flex;
    position: relative
}

    .popover-container > .popover-content {
        background-color: var(--theme-bg-input,#fefefe);
        border-radius: 5px;
        box-shadow: 0 1px 10px rgba(0,0,0,.2);
        box-sizing: border-box;
        left: 0;
        padding: 15px;
        position: absolute;
        top: 0;
        transition: all .3s ease-in-out;
        width: 300px;
        z-index: 3
    }

        .popover-container > .popover-content.fixed {
            position: fixed
        }

        .popover-container > .popover-content:after, .popover-container > .popover-content:before {
            content: "";
            height: 0;
            pointer-events: none;
            position: absolute;
            width: 0
        }

        .popover-container > .popover-content.top {
            left: 50%;
            top: -11px
        }

            .popover-container > .popover-content.top:after, .popover-container > .popover-content.top:before {
                left: 50%;
                transform: translateX(-50%)
            }

            .popover-container > .popover-content.top:before {
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                bottom: -10px
            }

            .popover-container > .popover-content.top:after {
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-top: 10px solid var(--theme-bg-input,#fefefe);
                bottom: -9px
            }

            .popover-container > .popover-content.top.popover-slide-enter, .popover-container > .popover-content.top.popover-slide-leave-to {
                top: -1px
            }

        .popover-container > .popover-content.right {
            left: calc(100% + 10px);
            top: 50%
        }

            .popover-container > .popover-content.right:after, .popover-container > .popover-content.right:before {
                top: 50%;
                transform: translateY(-50%)
            }

            .popover-container > .popover-content.right:after, .popover-container > .popover-content.right:before {
                border-bottom: 10px solid transparent;
                border-top: 10px solid transparent;
                left: -10px
            }

            .popover-container > .popover-content.right:after {
                border-right: 10px solid var(--theme-bg-input,#fefefe)
            }

            .popover-container > .popover-content.right.popover-slide-enter, .popover-container > .popover-content.right.popover-slide-leave-to {
                left: calc(100% + 0px)
            }

        .popover-container > .popover-content.bottom, .popover-container > .popover-content.bottomRight {
            left: 50%;
            top: calc(100% + 10px)
        }

            .popover-container > .popover-content.bottom:after, .popover-container > .popover-content.bottom:before, .popover-container > .popover-content.bottomRight:after, .popover-container > .popover-content.bottomRight:before {
                left: 50%;
                top: -10px;
                transform: translateX(-50%)
            }

            .popover-container > .popover-content.bottom:before, .popover-container > .popover-content.bottomRight:before {
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                top: -10px
            }

            .popover-container > .popover-content.bottom:after, .popover-container > .popover-content.bottomRight:after {
                border-bottom: 10px solid var(--theme-bg-input,#fefefe);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                top: -10px
            }

            .popover-container > .popover-content.bottom.popover-slide-enter, .popover-container > .popover-content.bottom.popover-slide-leave-to, .popover-container > .popover-content.bottomRight.popover-slide-enter, .popover-container > .popover-content.bottomRight.popover-slide-leave-to {
                top: calc(100% + 0px)
            }

        .popover-container > .popover-content.bottomRight {
            left: -12px
        }

            .popover-container > .popover-content.bottomRight:after, .popover-container > .popover-content.bottomRight:before {
                left: 16px
            }

        .popover-container > .popover-content.left {
            left: -10px;
            top: 50%
        }

            .popover-container > .popover-content.left:after, .popover-container > .popover-content.left:before {
                top: 50%;
                transform: translateY(-50%)
            }

            .popover-container > .popover-content.left:before {
                border-bottom: 10px solid transparent;
                border-top: 10px solid transparent;
                right: -10px
            }

            .popover-container > .popover-content.left:after {
                border-bottom: 10px solid transparent;
                border-left: 10px solid var(--theme-bg-input,#fefefe);
                border-top: 10px solid transparent;
                right: -9px
            }

            .popover-container > .popover-content.left.popover-slide-enter, .popover-container > .popover-content.left.popover-slide-leave-to {
                left: 0
            }

        .popover-container > .popover-content.popover-slide-enter, .popover-container > .popover-content.popover-slide-leave-to {
            opacity: 0
        }

    .popover-container.dark > .popover-content {
        background: linear-gradient(90deg,#379de3 0,#36bcdb);
        color: #fefefe
    }

        .popover-container.dark > .popover-content p {
            color: #fefefe
        }

        .popover-container.dark > .popover-content > header {
            background: linear-gradient(90deg,#4fa6e2 0,#50bddc);
            color: #fefefe;
            margin-bottom: 15px
        }

        .popover-container.dark > .popover-content.top:after {
            border-top-color: #37abde
        }

        .popover-container.dark > .popover-content.right:after {
            border-right-color: #379de3
        }

        .popover-container.dark > .popover-content.bottom:after {
            border-bottom-color: #37abde
        }

        .popover-container.dark > .popover-content.left:after {
            border-left-color: #36bcdb
        }

    .popover-container.alert .popover-content {
        background-color: #ff6545;
        color: #fefefe
    }

        .popover-container.alert .popover-content p {
            color: #ff6545
        }

        .popover-container.alert .popover-content > header {
            background-color: #ff6545;
            color: #fefefe;
            margin-bottom: 15px
        }

        .popover-container.alert .popover-content.top:after {
            border-top-color: #ff6545
        }

        .popover-container.alert .popover-content.right:after {
            border-right-color: #ff6545
        }

        .popover-container.alert .popover-content.bottom:after {
            border-bottom-color: #ff6545
        }

        .popover-container.alert .popover-content.left:after {
            border-left-color: #ff6545
        }

    .popover-container.tooltip > .popover-content, .tethys-tooltip.tooltip:after {
        max-width: 280px;
        padding: 15px;
        text-align: center;
        white-space: normal;
        width: 280px
    }

    .popover-container.tooltip-sm > .popover-content {
        max-width: 180px;
        padding: 15px;
        text-align: center;
        white-space: normal;
        width: 180px
    }

    .popover-container.dark .popover-content > header, .popover-container.light .popover-content > header {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        font-weight: 700;
        margin: -15px -15px 15px;
        padding: 15px
    }

    .popover-container.dark .popover-content p, .popover-container.light .popover-content p {
        font-size: 1.4rem
    }

    .popover-container.dark .popover-content > section, .popover-container.light .popover-content > section {
        padding: 15px 0 0
    }

    .popover-container.light .popover-content > header {
        border-bottom: 1px solid var(--theme-border,#eaeef1)
    }

.errors-popover {
    align-items: center;
    display: flex
}

    .errors-popover .errors {
        display: flex
    }

        .errors-popover .errors li, .errors-popover .errors ul {
            list-style: none;
            margin: 0;
            padding: 0;
            white-space: nowrap
        }

        .errors-popover .errors li {
            display: flex
        }

            .errors-popover .errors li .error {
                font-weight: 700;
                color: #fefefe
            }

            .errors-popover .errors li .key {
                color: #fefefe !important;
                font-weight: 700;
                margin-right: 5px
            }

                .errors-popover .errors li .key:after {
                    content: ":"
                }

        .errors-popover .errors .badge {
            background-color: #ff6545;
            color: #fefefe;
            cursor: pointer;
            line-height: inherit;
            margin-right: 15px;
            white-space: nowrap
        }

table.data-table.resizable th {
    position: relative
}

table.data-table.resizable.resizing {
    pointer-events: none
}

    table.data-table.resizable.resizing td, table.data-table.resizable.resizing th {
        user-select: none
    }

.column-drag-handle {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: transparent;
    width: 15px;
    transition: all .2s ease;
    z-index: 3;
    cursor: col-resize
}

    .column-drag-handle:after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        height: 0;
        border-right: 2px dashed var(--theme-txt,#131518);
        transition: all .1s ease
    }

    .column-drag-handle.dragging:after, .column-drag-handle:hover:after {
        top: 0;
        height: 100%
    }

.choose-columns {
    position: relative
}

    .choose-columns .col-menu {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 5px;
        background-color: var(--theme-bg-secondary,#fefefe);
        box-shadow: 0 1px 5px rgba(0,0,0,.1);
        padding-top: 10px;
        z-index: 100;
        border: 1px solid var(--theme-border,#eaeef1);
        border-radius: 3px
    }

        .choose-columns .col-menu .choose-columns.footer {
            border-top: 1px solid var(--theme-border,#eaeef1);
            margin-top: 20px;
            padding: 10px 20px
        }

        .choose-columns .col-menu label.checkbox {
            text-transform: none;
            white-space: nowrap;
            color: var(--theme-txt,#474f59);
            font-family: NotoLight,Arial,Helvetica,sans-serif;
            margin: 5px 20px;
            padding: 0;
            font-size: .9em;
            cursor: pointer;
            position: relative
        }

            .choose-columns .col-menu label.checkbox i.icon-filter-funnel {
                position: absolute;
                left: -1.3em
            }

            .choose-columns .col-menu label.checkbox input {
                margin-left: 0
            }

[data-v-83e3d7e6] {
    box-sizing: border-box
}

.date-calendar-range[data-v-83e3d7e6] {
    background-color: var(--theme-bg-input,#fefefe);
    border: 1px solid var(--theme-border,#eaeef1)
}

.date-calendar-range.disabled .cal-display .cal-content .date[data-v-83e3d7e6] {
    cursor: auto
}

    .date-calendar-range.disabled .cal-display .cal-content .date[data-v-83e3d7e6]:hover {
        box-shadow: none
    }

.date-calendar-range.left[data-v-83e3d7e6] {
    right: 0
}

.date-calendar-range .cal-nav[data-v-83e3d7e6] {
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,.05);
    padding: 7.5px;
    justify-items: center
}

.date-calendar-range .cal-nav > span[data-v-83e3d7e6] {
    flex: 1 0;
    font-weight: 800;
    text-align: center;
    line-height: 2;
    margin: 0;
    color: var(--theme-txt,#929db1);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.date-calendar-range .cal-nav > i[data-v-83e3d7e6] {
    flex: 0 0;
    cursor: pointer;
    color: var(--theme-txt,#929db1);
    transition: color .3s ease-in-out
}

    .date-calendar-range .cal-nav > i[data-v-83e3d7e6]:hover {
        color: #041E42
    }

.date-calendar-range .cal-display[data-v-83e3d7e6] {
    display: flex;
    flex-direction: column
}

.date-calendar-range .cal-display .cal-header[data-v-83e3d7e6] {
    display: flex
}

.date-calendar-range .cal-display .cal-header > span[data-v-83e3d7e6] {
    flex: 1 0;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-bottom: 2px solid;
    color: #929db1
}

.date-calendar-range .cal-display .cal-content[data-v-83e3d7e6] {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-items: center
}

.date-calendar-range .cal-display .cal-content > span[data-v-83e3d7e6] {
    flex: 1 14%;
    height: 35px;
    text-align: center;
    line-height: 35px
}

.date-calendar-range .cal-display .cal-content .date[data-v-83e3d7e6] {
    box-shadow: none;
    cursor: pointer;
    color: #929db1
}

    .date-calendar-range .cal-display .cal-content .date[data-v-83e3d7e6]:hover {
        box-shadow: inset 0 0 3px #929db1
    }

.date-calendar-range .cal-display .cal-content .date.greyed[data-v-83e3d7e6] {
    color: var(--theme-disabled-txt,#dee2e6)
}

.date-calendar-range .cal-display .cal-content .date.today[data-v-83e3d7e6] {
    background-color: var(--theme-cta,#40b8ff);
    color: #fff
}

.date-calendar-range .cal-display .cal-content .date.range[data-v-83e3d7e6] {
    background: #ccecff
}

.date-calendar-range .cal-display .cal-content .date.range.minus-range[data-v-83e3d7e6] {
    background: var(--theme-bg-input,#fff)
}

.date-calendar-range .cal-display .cal-content .date.range[data-v-83e3d7e6]:hover {
    background: #ccecff;
    box-shadow: inset 0 0 3px #929db1
}

.date-calendar-range .cal-display .cal-content .date.range.today[data-v-83e3d7e6] {
    background-color: var(--theme-cta,#40b8ff);
    color: #fff
}

.date-calendar-range .cal-display .cal-content .date.selectedEnd[data-v-83e3d7e6] {
    background: none;
    font-weight: 800;
    box-shadow: inset 3px 3px 0 0 #041E42,inset -3px -3px 0 0 #041E42
}

.date-calendar-range .cal-display .cal-content .date.selectedEnd.today[data-v-83e3d7e6] {
    background-color: var(--theme-cta,#40b8ff);
    color: #fff
}

.date-calendar-range .cal-display .cal-content .date.selected[data-v-83e3d7e6] {
    background: none;
    font-weight: 800;
    box-shadow: inset 3px 3px 0 0 #041E42,inset -3px -3px 0 0 #041E42
}

.date-calendar-range .cal-display .cal-content .date.selected.today[data-v-83e3d7e6] {
    background-color: var(--theme-cta,#40b8ff);
    color: #fff
}

.date-calendar-range .cal-display .cal-content .date.disabled[data-v-83e3d7e6] {
    color: #ff6545;
    cursor: not-allowed;
    box-shadow: none
}

.date-calendar-range .cal-display .cal-content .date.highlighted[data-v-83e3d7e6] {
    box-shadow: inset 0 0 0 2px #929db1
}

.date-picker-range {
    position: relative;
    display: inline-block;
    outline: 0;
    overflow: visible;
    border-radius: 5px
}

    .date-picker-range:hover label .date-display {
        padding-right: 23px
    }

    .date-picker-range:hover .icon-close {
        opacity: 1
    }

    .date-picker-range label {
        position: relative
    }

        .date-picker-range label .icon-close {
            position: absolute;
            top: calc(50% - 5px);
            right: 10px;
            cursor: pointer;
            opacity: 0
        }

    .date-picker-range input.date-display {
        position: relative;
        display: inline-block;
        height: 44px
    }

        .date-picker-range input.date-display.active, .date-picker-range input.date-display:focus {
            border: 2px solid #041E42 !important
        }

        .date-picker-range input.date-display:disabled {
            cursor: not-allowed
        }

    .date-picker-range > i {
        font-weight: 600;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%)
    }

        .date-picker-range > i:hover {
            cursor: pointer
        }

.date-calendar-range {
    max-width: 300px;
    background-color: var(--theme-bg-input,#fefefe);
    border: 1px solid var(--theme-border,#eaeef1);
    box-shadow: 0 1px 5px rgba(0,0,0,.1)
}

th.filtering label {
    margin-bottom: 5px;
    width: 100%
}

    th.filtering label.type-ahead-label.tethys-type-ahead-async input[type=search].search-input {
        background-color: var(--theme-bg-input,#fefefe);
        min-height: auto;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 10px
    }

        th.filtering label.type-ahead-label.tethys-type-ahead-async input[type=search].search-input input[type=text] {
            border-color: var(--theme-bg-input,#fefefe);
            background: transparent;
            margin: 0
        }

th.filtering input[type=color], th.filtering input[type=number], th.filtering input[type=password], th.filtering input[type=range], th.filtering input[type=search], th.filtering input[type=text], th.filtering select, th.filtering textarea {
    background-color: var(--theme-bg-input,#fefefe);
    margin-right: 1em;
    display: block;
    width: 100%;
    margin-bottom: 5px
}

    th.filtering input[type=color]:focus, th.filtering input[type=number]:focus, th.filtering input[type=password]:focus, th.filtering input[type=range]:focus, th.filtering input[type=search]:focus, th.filtering input[type=text]:focus, th.filtering select:focus, th.filtering textarea:focus {
        outline: none;
        border-color: var(--theme-cta,#041E42)
    }

th.filtering .date-picker-range {
    background-color: var(--theme-bg-input,#fefefe);
    display: flex;
    border: 1px solid var(--theme-border,#eaeef1);
    padding: 0
}

    th.filtering .date-picker-range label {
        margin-bottom: 0;
        max-width: 110px;
        position: relative
    }

        th.filtering .date-picker-range label:first-child {
            margin-right: 1em
        }

            th.filtering .date-picker-range label:first-child:after {
                position: absolute;
                top: 50%;
                right: -1em;
                margin-top: -.7em;
                font-family: tethys;
                content: "\F106"
            }

    th.filtering .date-picker-range input[type=text] {
        border-color: var(--theme-bg-input,#fefefe);
        background: transparent;
        margin: 0
    }

label.type-ahead-label input[type=search] {
    margin: 0
}

label.checkbox-toggle.disabled, label.checkbox-toggle[disabled] {
    cursor: not-allowed;
    opacity: .5
}

label.checkbox-toggle {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    overflow: visible
}

    label.checkbox-toggle input {
        cursor: pointer;
        line-height: 1;
        margin: 0 14px;
        outline: none;
        position: relative;
        -webkit-appearance: none
    }

        label.checkbox-toggle input:after, label.checkbox-toggle input:before {
            border-radius: 15px;
            box-sizing: border-box;
            content: "";
            display: inline-block;
            height: 30px;
            transition: all .3s ease
        }

        label.checkbox-toggle input:before {
            background-color: var(--theme-bg-input,#fbfcfc);
            border: 1px solid var(--theme-border,#929db1);
            box-shadow: inset 1px 1px 5px rgba(19,21,24,.5);
            width: 60px
        }

        label.checkbox-toggle input:after {
            background-color: var(--theme-txt,#fefefe);
            border: 1px solid var(--theme-border,#929db1);
            left: 0;
            position: absolute;
            top: 0;
            width: 30px
        }

        label.checkbox-toggle input:checked:before {
            background-color: var(--theme-cta,#041E42);
            box-shadow: inset 1px 1px 5px rgba(19,21,24,.5)
        }

        label.checkbox-toggle input:checked:after {
            left: 30px
        }

    label.checkbox-toggle.md input:after, label.checkbox-toggle.md input:before {
        border-radius: 12px;
        height: 24px
    }

    label.checkbox-toggle.md input:before {
        width: 48px
    }

    label.checkbox-toggle.md input:after {
        width: 24px
    }

    label.checkbox-toggle.md input:checked:after {
        left: 24px
    }

    label.checkbox-toggle.sm input:after, label.checkbox-toggle.sm input:before {
        border-radius: 7.5px;
        height: 15px
    }

    label.checkbox-toggle.sm input:before {
        width: 30px
    }

    label.checkbox-toggle.sm input:after {
        width: 15px
    }

    label.checkbox-toggle.sm input:checked:after {
        left: 15px
    }

label.checkbox {
    align-items: center;
    display: inline-block;
    display: flex;
    outline: none
}

    label.checkbox input[type=checkbox] {
        cursor: pointer;
        outline: none;
        position: relative;
        -webkit-appearance: none
    }

        label.checkbox input[type=checkbox]:disabled {
            cursor: not-allowed;
            opacity: .5
        }

        label.checkbox input[type=checkbox]:before {
            align-items: center;
            background-color: var(--theme-bg-secondary,#fefefe);
            border: 1px solid var(--theme-txt,#929db1);
            box-sizing: border-box;
            content: "";
            display: flex;
            height: 16px;
            justify-content: center;
            margin: 0;
            margin-right: 14px;
            transition: background-color .2s ease;
            width: 16px;
            border-radius: 3px
        }

        label.checkbox input[type=checkbox]:checked:before {
            background-color: var(--theme-cta,#041E42);
            border-color: var(--theme-cta,#041E42);
            color: #fefefe;
            content: "\F114";
            font-family: tethys;
            font-size: .8em
        }

table.table {
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    margin-bottom: 15px;
    width: 100%
}

    table.table .col-checkbox label.checkbox {
        width: 15px
    }

    table.table td, table.table th {
        padding: 7px 14px
    }

        table.table td .btn, table.table th .btn {
            margin: 0
        }

    table.table tr {
        background-color: var(--theme-bg-secondary,#fefefe);
        transition: background-color .2s ease
    }

    table.table thead {
        border-bottom: 1px solid var(--theme-border,#eaeef1)
    }

        table.table thead th {
            color: var(--theme-header,#474f59);
            font-weight: 700;
            text-align: left
        }

            table.table thead th.checkbox {
                min-width: 48px !important
            }

            table.table thead th.asc, table.table thead th.desc {
                border-right: 1px solid var(--theme-border,#eaeef1);
                padding-right: 1.5em;
                position: relative
            }

                table.table thead th.asc:after, table.table thead th.desc:after {
                    align-items: center;
                    color: var(--theme-header,#929db1);
                    display: flex;
                    font-family: tethys;
                    font-size: 1em;
                    height: 100%;
                    position: absolute;
                    right: .5em;
                    top: 0;
                    pointer-events: none
                }

                table.table thead th.asc.dim:after, table.table thead th.desc.dim:after {
                    opacity: .3
                }

                table.table thead th.desc:after {
                    content: "\F188"
                }

            table.table thead th.num.desc:after {
                content: "\F18A"
            }

            table.table thead th.asc:after {
                content: "\F187"
            }

            table.table thead th.num.asc:after {
                content: "\F189"
            }

            table.table thead th.center {
                text-align: center
            }

            table.table thead th.right {
                text-align: right
            }

    table.table td span.large {
        font-size: 1.1em;
        font-weight: 700
    }

    table.table .th.pull-right, table.table td.pull-right {
        text-align: right
    }

    table.table tbody tr.selected td, table.table tbody tr:hover td {
        background-color: var(--theme-highlight,#e0f4ff)
    }

    table.table.truncate th, table.table th.truncate {
        padding-right: 5em
    }

    table.table.sortable th, table.table th.sortable {
        cursor: pointer;
        user-select: none
    }

        table.table.sortable th:hover, table.table.striped tbody tr:nth-child(odd), table.table th.sortable:hover {
            background-color: var(--theme-bg,#fbfcfc)
        }

            table.table.striped tbody tr:nth-child(odd).selected, table.table.striped tbody tr:nth-child(odd):hover {
                background: transparent !important;
                background-color: var(--theme-highlight,#e0f4ff) !important
            }

    table.table.bordered thead tr th, table.table.border thead tr th {
        border-bottom: 2px solid var(--theme-border,#eaeef1);
        border-top: 2px solid var(--theme-border,#eaeef1)
    }

        table.table.bordered thead tr th:first-child, table.table.border thead tr th:first-child {
            border-left: 1px solid var(--theme-border,#eaeef1)
        }

        table.table.bordered thead tr th:last-child, table.table.border thead tr th:last-child {
            border-right: 1px solid var(--theme-border,#eaeef1)
        }

    table.table.bordered tbody tr td, table.table.border tbody tr td {
        border-bottom: 2px solid var(--theme-border,#eaeef1)
    }

        table.table.bordered tbody tr td:first-child, table.table.border tbody tr td:first-child {
            border-left: 1px solid var(--theme-border,#eaeef1)
        }

        table.table.bordered tbody tr td:last-child, table.table.border tbody tr td:last-child {
            border-right: 1px solid var(--theme-border,#eaeef1)
        }

    table.table.thin-row thead tr th {
        padding: 4px 14px;
        text-transform: uppercase
    }

    table.table.thin-row tbody th, table.table.thin-row td {
        padding: 4px 14px
    }

    table.table.key-val.bordered tbody tr:first-child td {
        border-top: 1px solid var(--theme-border,#eaeef1)
    }

    table.table.key-val tbody tr td {
        background-color: inherit
    }

        table.table.key-val tbody tr td:first-child {
            color: var(--theme-txt,#474f59);
            font-weight: 700;
            text-align: right
        }

            table.table.key-val tbody tr td:first-child:after {
                content: ":"
            }

    table.table.shadow.striped tbody tr:first-child td, table.table.shadowed.striped tbody tr:first-child td {
        background: linear-gradient(180deg,var(--theme-bg,#eaeef1) 0,var(--theme-bg,#fbfcfc) 12%,var(--theme-bg-secondary,#fbfcfc))
    }

    table.table.shadowed tbody tr:first-child td, table.table.shadow tbody tr:first-child td {
        background: linear-gradient(180deg,#eaeef1 0,#fefefe 12%,#fefefe)
    }

    table.table.shadowed tbody tr:first-child.selected td, table.table.shadowed tbody tr:first-child:hover td, table.table.shadow tbody tr:first-child.selected td, table.table.shadow tbody tr:first-child:hover td {
        background: linear-gradient(180deg,var(--theme-bg,#eaeef1) 0,var(--theme-highlight,#e0f4ff) 12%,var(--theme-highlight,#e0f4ff))
    }

    table.table.rounded-lg thead tr th:first-child {
        border-radius: 8px 0 0 0
    }

    table.table.rounded-lg thead tr th:last-child {
        border-radius: 0 8px 0 0
    }

    table.table.rounded-lg tbody tr:last-child td:last-child {
        border-radius: 0 0 8px 0
    }

    table.table.rounded-lg tbody tr:last-child td:first-child {
        border-radius: 0 0 0 8px
    }

    table.table.rounded-sm thead tr th:first-child {
        border-radius: 3px 0 0 0
    }

    table.table.rounded-sm thead tr th:last-child {
        border-radius: 0 3px 0 0
    }

    table.table.rounded-sm tbody tr:last-child td:last-child {
        border-radius: 0 0 3px 0
    }

    table.table.rounded-sm tbody tr:last-child td:first-child {
        border-radius: 0 0 0 3px
    }

    table.table.rounded-md thead tr th:first-child {
        border-radius: 5px 0 0 0
    }

    table.table.rounded-md thead tr th:last-child {
        border-radius: 0 5px 0 0
    }

    table.table.rounded-md tbody tr:last-child td:last-child {
        border-radius: 0 0 5px 0
    }

    table.table.rounded-md tbody tr:last-child td:first-child {
        border-radius: 0 0 0 5px
    }

    table.table.padded td, table.table.padded th {
        padding: 1em 2em
    }

    table.table.checkbox tr td:first-child, table.table.checkbox tr th:first-child {
        padding: 7px 0 7px 14px;
        width: 2.3em
    }

        table.table.checkbox tr td:first-child label input, table.table.checkbox tr th:first-child label input {
            margin: 0
        }

            table.table.checkbox tr td:first-child label input:before, table.table.checkbox tr th:first-child label input:before {
                border: 1px solid var(--theme-border,#eaeef1);
                margin: 0
            }

.enhanced-table {
    border: 1px solid var(--theme-border,#eaeef1);
    border-radius: 5px;
    display: flex;
    flex-direction: column
}

    .enhanced-table .table-row {
        border: 1px solid transparent;
        border-bottom: 1px solid var(--theme-border,#eaeef1);
        box-sizing: border-box;
        cursor: default;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: .75rem 1.5rem .75rem 1rem;
        user-select: none;
        width: 100%
    }

        .enhanced-table .table-row:first-child {
            border-top-left-radius: 5px;
            border-top-right-radius: 5px
        }

        .enhanced-table .table-row:last-child {
            border-bottom: 1px solid transparent;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px
        }

        .enhanced-table .table-row.selected, .enhanced-table .table-row:hover {
            background-color: var(--theme-highlight,#e5f6ff);
            border: 1px solid var(--theme-highlight,#80d0ff)
        }

        .enhanced-table .table-row .text-left {
            display: flex;
            flex-direction: column;
            justify-content: flex-start
        }

            .enhanced-table .table-row .text-left .header.link:hover {
                cursor: pointer;
                text-decoration: underline
            }

        .enhanced-table .table-row .text-right {
            display: flex;
            flex-direction: column;
            justify-content: flex-end
        }

table.word-count-table {
    height: 100%;
    margin: 0;
    width: 100%
}

    table.word-count-table thead > tr {
        background: #eaeef1;
        display: flex;
        flex: 1;
        flex-direction: row;
        justify-content: space-between
    }

        table.word-count-table thead > tr > th {
            border-right: 2px solid #dee2e8;
            display: flex;
            flex: 1;
            justify-content: flex-start;
            margin: 0;
            padding: .5em 1em
        }

            table.word-count-table thead > tr > th:last-of-type {
                border-right: 0
            }

    table.word-count-table tbody > tr {
        display: flex;
        flex: 1;
        flex-direction: row;
        justify-content: space-between
    }

        table.word-count-table tbody > tr:hover td {
            background: 0
        }

        table.word-count-table tbody > tr td {
            border-right: 2px solid #dee2e8;
            display: flex;
            flex: 1;
            justify-content: flex-start;
            margin: 0;
            padding: .5em 1em
        }

            table.word-count-table tbody > tr td:last-of-type {
                border: 0
            }

    table.word-count-table tfoot > tr {
        background: #eaeef1;
        border-top: 2px solid #929db1;
        display: flex;
        flex: 1;
        flex-direction: row;
        justify-content: space-between
    }

        table.word-count-table tfoot > tr.red {
            background: #ff6545;
            color: #fefefe
        }

        table.word-count-table tfoot > tr.green {
            background: #01d479;
            color: #fefefe
        }

        table.word-count-table tfoot > tr td {
            display: flex;
            flex: 1;
            justify-content: flex-start;
            margin: 0;
            margin-left: 75%;
            padding: .5em 1em
        }

.cat-table-row {
    border-bottom: 2px solid #eaeef1;
    flex-direction: row;
    margin: 5px 0
}

    .cat-table-row, .cat-table-row .cat-table-col {
        align-items: center;
        display: flex;
        justify-content: flex-start
    }

        .cat-table-row .cat-table-col {
            flex: 1;
            flex-direction: row;
            padding: 5px
        }

            .cat-table-row .cat-table-col.strong {
                background-color: #fbfcfc;
                font-weight: 700
            }

            .cat-table-row .cat-table-col .cat-table-label {
                align-items: center;
                color: #adb6c4;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                padding: 0 5px
            }

            .cat-table-row .cat-table-col .cat-table-value {
                align-items: center;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                padding-right: 5px
            }

table.table.table-resize-directive.resizing th:before {
    display: none
}

table.table.table-resize-directive.resizing td, table.table.table-resize-directive.resizing th {
    cursor: col-resize !important
}

    table.table.table-resize-directive.resizing td.resizing, table.table.table-resize-directive.resizing th.resizing {
        border-right: 1px solid var(--theme-border,#929db1)
    }

table.table.table-resize-directive td, table.table.table-resize-directive th {
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

table.table.table-resize-directive th {
    cursor: col-resize;
    position: relative;
    user-select: none;
    -moz-user-select: none
}

    table.table.table-resize-directive th.no-resize:before, table.table.table-resize-directive th:last-of-type:before {
        display: none
    }

    table.table.table-resize-directive th .drag-handle {
        height: 100%;
        left: 0;
        opacity: .5;
        position: absolute;
        top: 0;
        width: 100%
    }

    table.table.table-resize-directive th:before {
        border-right: 2px dashed var(--theme-border,#929db1);
        content: "";
        cursor: col-resize;
        height: 0;
        opacity: 0;
        position: absolute;
        right: 0;
        top: 50%;
        transition: all .2s ease-out
    }

        table.table.table-resize-directive th:before:hover {
            border-color: #929db1
        }

    table.table.table-resize-directive th.resizing:before, table.table.table-resize-directive th:hover:before {
        height: 100%;
        opacity: 1;
        top: 0
    }

.data-table .customize-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px
}

    .data-table .customize-actions .current-filters {
        flex-grow: 2
    }

        .data-table .customize-actions .current-filters span.badge.filter {
            margin-bottom: 5px
        }

            .data-table .customize-actions .current-filters span.badge.filter > i {
                font-size: .8em;
                margin-left: 5px
            }

    .data-table .customize-actions .actions {
        min-height: 47px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 5px;
        width: 280px
    }

        .data-table .customize-actions .actions .btn, .data-table .customize-actions .actions a {
            margin-right: 10px
        }

.data-table-container {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    padding-bottom: 2px;
    box-sizing: border-box
}

    .data-table-container.sticky-headers {
        overflow-y: auto
    }

        .data-table-container.sticky-headers table.data-table > thead > tr > th {
            z-index: 1;
            position: sticky;
            top: 0
        }

            .data-table-container.sticky-headers table.data-table > thead > tr > th:focus-within {
                z-index: 2
            }

    .data-table-container.resizable {
        overflow-x: auto
    }

        .data-table-container.resizable table.data-table {
            table-layout: fixed
        }

        .data-table-container.resizable td, .data-table-container.resizable th {
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden
        }

table.data-table {
    min-width: 100%;
    margin-bottom: 0
}

    table.data-table.sortableHeaders > thead th {
        border-bottom: 1px solid var(--theme-border,#eaeef1);
        border-bottom-width: 2px
    }

        table.data-table.sortableHeaders > thead th:not(.single-select) {
            cursor: pointer;
            border-right: 1px solid var(--theme-border,#eaeef1)
        }

        table.data-table.sortableHeaders > thead th:not(.disabled,table.data-table.sortableHeaders>thead th .col-checkbox) {
            cursor: pointer
        }

    table.data-table.disabled > thead > tr > th {
        cursor: not-allowed
    }

    table.data-table th.col-checkbox {
        border-right: none
    }

    table.data-table .col-checkbox input[type=checkbox] {
        margin: 0
    }

    table.data-table > thead th {
        background-color: var(--theme-bg-secondary,#fefefe)
    }

        table.data-table > thead th .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%
        }

            table.data-table > thead th .header-container .header-label {
                flex: 1;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                min-width: 0
            }

            table.data-table > thead th .header-container > i.icon-sort-alpha-desc, table.data-table > thead th .header-container i.icon-sort-alpha-asc, table.data-table > thead th .header-container i.icon-sort-num-asc, table.data-table > thead th .header-container i.icon-sort-num-desc {
                font-size: 15px;
                height: 15px;
                line-height: 15px;
                margin: 0;
                opacity: .3;
                transition: transform .3s ease-in-out;
                vertical-align: middle
            }

                table.data-table > thead th .header-container > i.icon-sort-alpha-desc:before, table.data-table > thead th .header-container i.icon-sort-alpha-asc:before, table.data-table > thead th .header-container i.icon-sort-num-asc:before, table.data-table > thead th .header-container i.icon-sort-num-desc:before {
                    margin: 0
                }

                table.data-table > thead th .header-container > i.icon-sort-alpha-desc.reverse, table.data-table > thead th .header-container i.icon-sort-alpha-asc.reverse, table.data-table > thead th .header-container i.icon-sort-num-asc.reverse, table.data-table > thead th .header-container i.icon-sort-num-desc.reverse {
                    transform: rotateX(180deg)
                }

            table.data-table > thead th .header-container.selected i.icon-sort-alpha-asc, table.data-table > thead th .header-container.selected i.icon-sort-alpha-desc, table.data-table > thead th .header-container.selected i.icon-sort-num-asc, table.data-table > thead th .header-container.selected i.icon-sort-num-desc {
                opacity: 1
            }

        table.data-table > thead th.filtering {
            padding: 10px;
            padding-bottom: 0;
            vertical-align: top;
            overflow: visible !important
        }

        table.data-table > thead th.disabled {
            color: var(--theme-disabled-txt,#929db1);
            cursor: auto
        }

        table.data-table > thead th.actions-container {
            padding: 0;
            width: 0;
            border: none
        }

    table.data-table > tbody > tr:hover td.actions-container > .actions {
        visibility: visible
    }

    table.data-table > tbody > tr td.actions-container {
        position: relative;
        width: 0;
        padding: 0;
        border: none;
        overflow: visible;
        min-width: 0
    }

        table.data-table > tbody > tr td.actions-container > .actions {
            align-items: center;
            background-image: linear-gradient(90deg,rgba(224,244,255,0) 0,var(--theme-highlight,#e0f4ff) 30px);
            bottom: 1px;
            display: flex;
            visibility: hidden;
            padding-left: 80px;
            padding-right: 15px;
            position: absolute;
            right: 1px;
            top: 1px;
            width: auto;
            transition: margin .2s ease
        }

            table.data-table > tbody > tr td.actions-container > .actions > ul {
                align-items: center;
                display: flex;
                justify-content: flex-end
            }

                table.data-table > tbody > tr td.actions-container > .actions > ul li {
                    align-items: center;
                    border-radius: 3px;
                    cursor: pointer;
                    display: inline-flex;
                    flex: 0 0 32px;
                    height: 32px;
                    justify-content: center;
                    margin: 0 5px
                }

                    table.data-table > tbody > tr td.actions-container > .actions > ul li:hover {
                        box-shadow: inset 0 0 0 1px var(--theme-highlight,#041E42)
                    }

                        table.data-table > tbody > tr td.actions-container > .actions > ul li:hover > i {
                            color: #474f59
                        }

                    table.data-table > tbody > tr td.actions-container > .actions > ul li > i {
                        color: #929db1;
                        font-size: 18px
                    }

                    table.data-table > tbody > tr td.actions-container > .actions > ul li > button.btn {
                        margin: 0 5px;
                        padding: 0 10px;
                        height: 1.8em;
                        font-size: .8em;
                        line-height: 1.8em
                    }

    table.data-table > tbody > tr.selected > td {
        box-shadow: inset 0 1px 0 0 var(--theme-cta,#041E42),inset 0 -1px 0 0 var(--theme-cta,#041E42)
    }

        table.data-table > tbody > tr.selected > td:first-child {
            box-shadow: inset 1px 0 0 0 var(--theme-cta,#041E42),inset 0 1px 0 0 var(--theme-cta,#041E42),inset 0 -1px 0 0 var(--theme-cta,#041E42)
        }

        table.data-table > tbody > tr.selected > td.last-col {
            box-shadow: inset -1px 0 0 0 var(--theme-cta,#041E42),inset 0 1px 0 0 var(--theme-cta,#041E42),inset 0 -1px 0 0 var(--theme-cta,#041E42)
        }

div.tethys-tab-list > ul.tab-list {
    display: flex
}

    div.tethys-tab-list > ul.tab-list > li.tab {
        cursor: pointer;
        flex: 0;
        white-space: nowrap;
        text-align: center;
        padding: 15px;
        transition: box-shadow .2s ease-in-out,opacity .2s ease-in-out;
        opacity: .5
    }

        div.tethys-tab-list > ul.tab-list > li.tab.active {
            opacity: 1
        }

        div.tethys-tab-list > ul.tab-list > li.tab.disabled {
            cursor: not-allowed
        }

div.tethys-tab-list > .tab-list-content {
    margin-top: 15px;
    position: relative
}

    div.tethys-tab-list > .tab-list-content.slide-left-enter-active, div.tethys-tab-list > .tab-list-content.slide-left-leave-active, div.tethys-tab-list > .tab-list-content.slide-right-enter-active, div.tethys-tab-list > .tab-list-content.slide-right-leave-active, div.tethys-tab-list > .tab-list-content.slide-up-enter-active, div.tethys-tab-list > .tab-list-content.slide-up-leave-active {
        transition: all .3s ease-in-out
    }

    div.tethys-tab-list > .tab-list-content.slide-left-enter {
        transform: translateX(20px);
        opacity: 0
    }

    div.tethys-tab-list > .tab-list-content.slide-left-leave-to, div.tethys-tab-list > .tab-list-content.slide-right-enter {
        transform: translateX(-20px);
        opacity: 0
    }

    div.tethys-tab-list > .tab-list-content.slide-right-leave-to {
        transform: translateX(20px);
        opacity: 0
    }

    div.tethys-tab-list > .tab-list-content.slide-up-enter, div.tethys-tab-list > .tab-list-content .slide-up-leave-to {
        transform: translateY(20px);
        opacity: 0
    }

div.tethys-tab-list > .tab-bar {
    height: 1px;
    background-color: var(--theme-border,#cbd3db);
    position: relative
}

    div.tethys-tab-list > .tab-bar > .active-tab {
        position: absolute;
        top: -1px;
        bottom: 0;
        left: 0;
        right: 50%;
        background-color: var(--theme-cta,#4797d8);
        transition: all .2s ease-in-out
    }

div.tethys-tab-list.header-radio {
    border-radius: 8px;
    border: 1px solid var(--theme-border,#eaeef1)
}

    div.tethys-tab-list.header-radio > ul.tab-list {
        border-bottom: 1px solid var(--theme-border,#eaeef1)
    }

        div.tethys-tab-list.header-radio > ul.tab-list > li.tab {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center
        }

            div.tethys-tab-list.header-radio > ul.tab-list > li.tab > input {
                margin-right: 15px
            }

            div.tethys-tab-list.header-radio > ul.tab-list > li.tab:not(.active) {
                background-color: var(--theme-border,#eaeef1)
            }

    div.tethys-tab-list.header-radio > .tab-list-content {
        padding: 20px;
        margin-top: 0
    }

div.tethys-tab-list.header-controller > .tab-list {
    border-radius: 5px;
    border: 2px solid var(--theme-cta,#041E42);
    display: inline-flex;
    background-color: var(--theme-border,#fefefe)
}

    div.tethys-tab-list.header-controller > .tab-list > .tab {
        opacity: 1;
        color: #041E42;
        transition: background-color .3s ease-in-out,color .3s ease-in-out
    }

        div.tethys-tab-list.header-controller > .tab-list > .tab:not(:last-of-type) {
            border-right: 2px solid var(--theme-cta,#041E42)
        }

        div.tethys-tab-list.header-controller > .tab-list > .tab.active {
            color: #fefefe;
            background-color: var(--theme-cta,#041E42)
        }

.left-in-right-out-enter-active {
    transition: all .3s ease-in-out;
    transition-delay: 1s
}

.left-in-right-out-leave-active {
    transition: all .3s ease-in-out
}

.left-in-right-out-enter {
    transform: translateX(-10px);
    opacity: 0
}

.left-in-right-out-leave-to {
    transform: translateX(10px);
    opacity: 0
}

.paginate-bar-container {
    flex-wrap: nowrap
}

    .paginate-bar-container, .paginate-bar-container .pb-custom-page {
        display: flex;
        flex-direction: row;
        align-items: center
    }

        .paginate-bar-container .pb-custom-page select {
            margin-left: 5px;
            min-height: auto;
            height: 2em;
            line-height: 1em;
            padding: 5px;
            min-width: 60px
        }

            .paginate-bar-container .pb-custom-page select:focus {
                outline: none;
                border-color: var(--theme-cta,#041E42)
            }

        .paginate-bar-container .pb-range {
            margin: 0 20px
        }

        .paginate-bar-container .pb-page-link {
            cursor: pointer;
            margin: 0 5px;
            border-radius: 50%;
            height: 2em;
            width: 2em
        }

            .paginate-bar-container .pb-page-link:hover {
                background-color: var(--theme-bg,#dee2e6)
            }

            .paginate-bar-container .pb-page-link.disabled {
                opacity: .5;
                pointer-events: none
            }

.tethys-filtered-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1
}

    .tethys-filtered-search-bar.open button.filter-input {
        border-color: var(--theme-cta,#041E42);
        color: var(--theme-txt,#131518)
    }

    .tethys-filtered-search-bar i {
        cursor: pointer
    }

        .tethys-filtered-search-bar.disabled, .tethys-filtered-search-bar.disabled button.filter-input, .tethys-filtered-search-bar.disabled i, .tethys-filtered-search-bar i.disabled {
            cursor: not-allowed
        }

    .tethys-filtered-search-bar button.filter-input, .tethys-filtered-search-bar label.search-container {
        border-radius: 5px;
        border: 1px solid var(--theme-border,#eaeef1);
        margin-right: 0;
        background-color: var(--theme-bg-input,#fefefe)
    }

        .tethys-filtered-search-bar button.filter-input i.md, .tethys-filtered-search-bar label.search-container i.md {
            font-size: 1.2em
        }

        .tethys-filtered-search-bar button.filter-input i.sm, .tethys-filtered-search-bar label.search-container i.sm {
            font-size: 1em
        }

        .tethys-filtered-search-bar button.filter-input i:first-child, .tethys-filtered-search-bar label.search-container i:first-child {
            margin-right: 5px
        }

        .tethys-filtered-search-bar button.filter-input i:last-child, .tethys-filtered-search-bar label.search-container i:last-child {
            margin-left: 5px
        }

    .tethys-filtered-search-bar button.filter-input {
        display: inline-flex;
        align-items: center;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        box-shadow: none;
        font-family: NotoLight,Arial,Helvetica,sans-serif;
        width: auto;
        color: #a8b1c1;
        transition: border .3s ease-in-out,color .3s ease-in-out;
        margin-bottom: 0
    }

    .tethys-filtered-search-bar label.search-container {
        color: #131518;
        flex: 0 380px;
        display: inline-flex;
        padding: 0 5px;
        height: 44px;
        align-items: center;
        outline: 0;
        text-decoration: none;
        font-family: NotoLight,Arial,Helvetica,sans-serif;
        overflow: hidden;
        font-weight: 800;
        white-space: nowrap;
        vertical-align: middle;
        user-select: none;
        -webkit-user-select: none;
        transition: border .3s ease-in-out;
        z-index: 0
    }

        .tethys-filtered-search-bar label.search-container.hasFilterOptions {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0
        }

        .tethys-filtered-search-bar label.search-container:focus-within {
            border-color: var(--theme-cta,#041E42)
        }

        .tethys-filtered-search-bar label.search-container input.search-input {
            margin: 0;
            padding: 0;
            outline: 0;
            border: none;
            width: 100%;
            height: auto;
            border-radius: 0
        }

        .tethys-filtered-search-bar label.search-container i.lighten {
            color: #a8b1c1
        }

    .tethys-filtered-search-bar div.popover-container {
        position: static
    }

        .tethys-filtered-search-bar div.popover-container div.popover-content {
            background-color: var(--theme-bg-secondary,#fefefe);
            left: 15px;
            right: 15px;
            padding: 20px;
            width: calc(100% - 30px);
            transform: none
        }

            .tethys-filtered-search-bar div.popover-container div.popover-content:after, .tethys-filtered-search-bar div.popover-container div.popover-content:before {
                left: calc(100% - 2rem)
            }

        .tethys-filtered-search-bar div.popover-container .filter-option-list {
            display: flex;
            border-bottom: 1px solid var(--theme-border,#eaeef1);
            padding: 15px 0
        }

            .tethys-filtered-search-bar div.popover-container .filter-option-list:first-of-type {
                padding-top: 0
            }

            .tethys-filtered-search-bar div.popover-container .filter-option-list .title {
                flex: 0 0 120px;
                min-width: 0;
                margin: 15px 0;
                line-height: 16px
            }

            .tethys-filtered-search-bar div.popover-container .filter-option-list .options {
                flex: 1;
                display: flex;
                flex-flow: row wrap;
                align-items: center
            }

                .tethys-filtered-search-bar div.popover-container .filter-option-list .options.greyed label.checkbox {
                    opacity: .6
                }

                .tethys-filtered-search-bar div.popover-container .filter-option-list .options .option {
                    flex: 0 180px;
                    margin: 15px 0;
                    min-width: 0;
                    display: flex;
                    padding: 0 15px
                }

                    .tethys-filtered-search-bar div.popover-container .filter-option-list .options .option input, .tethys-filtered-search-bar div.popover-container .filter-option-list .options .option label {
                        margin: 0
                    }

                    .tethys-filtered-search-bar div.popover-container .filter-option-list .options .option > .date-picker, .tethys-filtered-search-bar div.popover-container .filter-option-list .options .option > .date-picker > input {
                        width: 100%
                    }

        .tethys-filtered-search-bar div.popover-container .bottom-filter-bar {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            align-content: flex-end
        }

            .tethys-filtered-search-bar div.popover-container .bottom-filter-bar span {
                cursor: pointer;
                padding: .25em
            }

            .tethys-filtered-search-bar div.popover-container .bottom-filter-bar .action-buttons {
                display: flex;
                justify-content: space-between;
                margin-right: .25em
            }

            .tethys-filtered-search-bar div.popover-container .bottom-filter-bar #cancel {
                margin-right: 15px
            }

            .tethys-filtered-search-bar div.popover-container .bottom-filter-bar #clear {
                color: #ff6545
            }

            .tethys-filtered-search-bar div.popover-container .bottom-filter-bar #apply {
                color: var(--theme-cta,#041E42)
            }

.tethys-data-table-async .paginate-wrapper {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px
}

    .tethys-data-table-async .paginate-wrapper:not(.empty) {
        min-height: 25px
    }

    .tethys-data-table-async .paginate-wrapper > .search-results {
        margin-right: auto
    }

    .tethys-data-table-async .paginate-wrapper > .spinner {
        font-size: 25px
    }

    .tethys-data-table-async .paginate-wrapper > .tethys-filtered-search-bar {
        margin-left: 15px;
        flex: 0 300px
    }

.tethys-data-table-async .tethys-filtered-search-bar {
    position: static
}

.tethys-data-table-async ul.tab-list {
    position: relative
}

    .tethys-data-table-async ul.tab-list > .tethys-filtered-search-bar.filters-applied button.filter-input > i.icon-filters {
        color: #041E42
    }

.tethys-data-table-async .tab-list-content.no-tabs {
    margin-top: 0
}

.tethys-data-table-async .popover-container > .popover-content.bottom, .tethys-data-table-async .popover-container > .popover-content.bottomRight {
    top: calc(100% + 3px)
}

.tethys-data-table-async .data-table-container {
    margin-bottom: 0
}

.tethys-data-table-async .paginate-bar-container {
    margin-top: 5px;
    justify-content: flex-end
}

.program-index .no-matches {
    width: 75%
}

.modal-form .form-footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-end
}

    .modal-form .form-footer .errors-popover {
        animation: shake .4s ease-out
    }

.mirror-container {
    background-color: var(--theme-bg,#fefefe);
    display: flex;
    position: relative;
    width: 100%
}

    .mirror-container.disabled textarea.mirror-input {
        z-index: -1;
        opacity: 0
    }

    .mirror-container.disabled .mirror-preview {
        cursor: not-allowed
    }

        .mirror-container.disabled .mirror-preview > * {
            overflow: auto
        }

    .mirror-container .mirror-preview, .mirror-container .mirror-preview > *, .mirror-container textarea.mirror-input {
        background: transparent !important;
        font-size: 16px !important;
        font-weight: 400;
        letter-spacing: .01em;
        line-height: 20px
    }

    .mirror-container .mirror-preview, .mirror-container textarea.mirror-input {
        background: transparent !important;
        border: none !important;
        caret-color: var(--theme-txt,#131518) !important;
        margin: 0 !important;
        outline: none;
        resize: none;
        text-transform: none;
        white-space: pre-wrap;
        width: 100%;
        word-break: break-all
    }

    .mirror-container .mirror-preview {
        height: 100%;
        overflow: hidden;
        padding: 0;
        position: absolute;
        top: 0
    }

        .mirror-container .mirror-preview > * {
            height: 100%;
            left: 0;
            overflow: hidden;
            padding: 14px;
            position: absolute;
            top: 0;
            width: 100%
        }

    .mirror-container:focus-within .mirrow-preview {
        z-index: 1
    }

    .mirror-container:focus-within textarea.mirror-input {
        z-index: 4
    }

    .mirror-container .mirror-preview > *, .mirror-container textarea.mirror-input {
        padding: 14px
    }

    .mirror-container textarea.mirror-input {
        caret-color: #131518;
        color: transparent !important;
        display: inline-flex;
        min-height: 100%;
        position: relative
    }

        .mirror-container textarea.mirror-input::selection {
            background-color: rgba(255,201,52,.3)
        }

.json-editor, label.input-group .json-editor {
    border-left: 2px solid var(--theme-border,#eaeef1);
    display: inline-flex;
    flex-grow: 1;
    margin-left: 14px
}

    .json-editor .mirror-preview, label.input-group .json-editor .mirror-preview {
        background-color: var(--theme-bg-syntax,#fefefe) !important
    }

    .json-editor:focus-within, label.input-group .json-editor:focus-within {
        border-color: var(--theme-cta,#041E42)
    }

    .json-editor:hover .controls, label.input-group .json-editor:hover .controls {
        visibility: visible
    }

    .json-editor.fullscreen, label.input-group .json-editor.fullscreen {
        height: 100vh;
        left: 0;
        margin: 0;
        padding: 0;
        position: fixed;
        top: 0;
        width: 100vw;
        z-index: 1000
    }

        .json-editor.fullscreen textarea, label.input-group .json-editor.fullscreen textarea {
            height: 100% !important;
            resize: none !important
        }

        .json-editor.fullscreen .controls, label.input-group .json-editor.fullscreen .controls {
            right: 40px;
            top: 40px
        }

    .json-editor:focus-within .controls, label.input-group .json-editor:focus-within .controls {
        z-index: 4
    }

    .json-editor .controls, label.input-group .json-editor .controls {
        display: flex;
        justify-content: space-between;
        position: absolute;
        right: 14px;
        top: 14px;
        visibility: hidden
    }

        .json-editor .controls i, label.input-group .json-editor .controls i {
            color: #929db1;
            cursor: pointer;
            font-size: 1.5em;
            transition: all .2s ease;
            width: 1.4em
        }

            .json-editor .controls i:hover, label.input-group .json-editor .controls i:hover {
                color: #131518;
                transform: scale(1.2)
            }

    .json-editor .json-errors, label.input-group .json-editor .json-errors {
        color: #fefefe
    }

        .json-editor .json-errors .error-marker, label.input-group .json-editor .json-errors .error-marker {
            box-shadow: 0 0 0 3px #ff937d
        }

    .json-editor textarea.json-input::selection, label.input-group .json-editor textarea.json-input::selection {
        background-color: rgba(255,201,52,.3)
    }

.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.input-group .markdown-editor {
    display: inline-flex;
    flex-grow: 1;
    box-sizing: border-box
}

.markdown-editor {
    position: relative
}

    .markdown-editor textarea.markdown-input {
        height: 100%
    }

    .markdown-editor .md-preview {
        position: absolute;
        width: 100%;
        top: 100%;
        margin-top: 5px;
        margin-bottom: 40px;
        left: 0;
        background-color: var(--theme-bg,rgba(251,252,252,.9));
        text-transform: none;
        z-index: 1000
    }

        .markdown-editor .md-preview .md-header {
            background-color: var(--theme-bg-secondary,#929db1);
            padding: 5px;
            display: flex;
            align-items: center;
            color: var(--theme-header,#eaeef1);
            justify-content: space-between
        }

            .markdown-editor .md-preview .md-header .tip {
                font-size: .9em;
                font-style: italic
            }

            .markdown-editor .md-preview .md-header .icon-container {
                display: flex;
                align-items: center
            }

            .markdown-editor .md-preview .md-header .fullscreen-toggle {
                font-size: 14px;
                cursor: pointer;
                margin-left: 5px
            }

                .markdown-editor .md-preview .md-header .fullscreen-toggle:hover {
                    color: #fff
                }

            .markdown-editor .md-preview .md-header img {
                margin-right: 5px;
                width: auto;
                height: 20px
            }

            .markdown-editor .md-preview .md-header a {
                height: 21px;
                overflow: hidden;
                color: var(--theme-txt,#fefefe)
            }

        .markdown-editor .md-preview .md-content {
            border: 2px solid var(--theme-border,#eaeef1);
            border-top: none;
            font-weight: 400;
            font-family: Helvetica,sans-serif;
            padding: 20px;
            overflow-y: auto;
            font-size: 14px;
            color: var(--theme-txt,#131518);
            white-space: normal;
            word-wrap: normal
        }

    .markdown-editor.fullscreen {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        z-index: 10000
    }

        .markdown-editor.fullscreen textarea.markdown-input {
            width: 50%;
            height: 100%;
            resize: none;
            outline: none;
            border: none;
            padding: 14px
        }

        .markdown-editor.fullscreen .md-preview, .markdown-editor.fullscreen textarea.markdown-input {
            position: static;
            margin: 0 !important;
            padding-top: 40px !important;
            width: 50% !important;
            height: 100%
        }

        .markdown-editor.fullscreen .md-preview {
            border-left: 2px dashed var(--theme-border,#eaeef1)
        }

            .markdown-editor.fullscreen .md-preview .md-header {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%
            }

            .markdown-editor.fullscreen .md-preview .md-content {
                max-height: 100%;
                overflow-y: auto;
                border: none
            }

.program-config-ti .markdown-editor textarea {
    min-height: 200px
}

.debug-wrapper {
    display: inline-flex;
    flex-grow: 1
}

    .debug-wrapper .btn.white {
        color: #929db1
    }

    .debug-wrapper.open {
        display: block
    }

    .debug-wrapper .tracer {
        color: var(--theme-txt,#474f59);
        font-family: Monaco,monospace;
        font-size: 1em;
        font-weight: 200;
        line-height: 1.5em;
        white-space: pre-wrap;
        width: 100%
    }

        .debug-wrapper .tracer, .debug-wrapper .tracer pre {
            background-color: var(--theme-bg,#fefefe)
        }

            .debug-wrapper .tracer pre .highlight {
                animation: highlightBright 2s ease
            }

textarea {
    min-height: 200px
}

svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity .1s ease-in;
    fill: var(--theme-txt,#131518)
}

    svg.transition {
        transition: opacity .1s;
        opacity: 0
    }

    svg .arrow {
        stroke: var(--theme-txt,#131518);
        stroke-width: 2;
        fill: none
    }

        svg .arrow.primary {
            marker-end: url(#markerArrow)
        }

.graph-node {
    width: 200px;
    height: 200px;
    background-color: #f5f7f8;
    border: 3px solid var(--theme-border,#515c71);
    padding: 5px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: NotoBold,Arial,Helvetica,sans-serif;
    color: #332100;
    transition: box-shadow .2s ease;
    transition: background-color .2s ease;
    position: absolute;
    user-select: none
}

    .graph-node .label {
        overflow: hidden;
        width: 200px;
        padding: 0 15px;
        white-space: nowrap;
        text-overflow: ellipsis;
        text-align: center;
        z-index: 2
    }

    .graph-node.transition {
        transition: all .2s ease-out
    }

    .graph-node:active {
        box-shadow: 0 0 5px #131518;
        z-index: 1000
    }

    .graph-node .handle {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        cursor: move
    }

    .graph-node select {
        z-index: 2;
        height: 2.5em;
        line-height: 2em;
        background-color: inherit;
        border-color: inherit;
        padding-left: 5px;
        color: inherit;
        max-width: 100px
    }

    .graph-node.start {
        background-color: #e1fff2;
        border-color: #019455
    }

    .graph-node.end {
        background-color: #fff0ec;
        border-color: #e32700
    }

    .graph-node.selected {
        box-shadow: 0 0 20px #041E42
    }

.dag-visual-editor {
    background-color: var(--theme-bg,#fefefe);
    background-image: linear-gradient(45deg,var(--theme-bg-secondary,#eaeef1) 25%,transparent 0,transparent 75%,var(--theme-bg-secondary,#eaeef1) 0,var(--theme-bg-secondary,#eaeef1)),linear-gradient(45deg,var(--theme-bg-secondary,#eaeef1) 25%,var(--theme-bg,#fff) 0,var(--theme-bg,#fff) 75%,var(--theme-bg-secondary,#eaeef1) 0,var(--theme-bg-secondary,#eaeef1));
    background-position: 0 0,10px 10px;
    background-size: 20px 20px;
    box-sizing: border-box;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000
}

    .dag-visual-editor .slide-out {
        position: relative
    }

        .dag-visual-editor .slide-out .slide-out-content {
            background-color: var(--theme-bg-secondary,hsla(0,0%,100%,.96));
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(19,21,24,.5);
            height: auto;
            padding: 40px;
            padding-top: 100px;
            position: absolute;
            right: 10%;
            top: 0;
            width: 80%
        }

            .dag-visual-editor .slide-out .slide-out-content .close {
                bottom: -1.7em;
                left: -1.8em;
                position: absolute
            }

        .dag-visual-editor .slide-out .backdrop {
            background-color: var(--theme-bg,#fefefe);
            opacity: .5;
            cursor: pointer;
            height: 100%;
            left: 0;
            position: fixed;
            top: 0;
            width: 100%
        }

    .dag-visual-editor .canvas {
        background-color: var(--theme-bg-secondary,#fefefe);
        box-shadow: 0 0 3px 3px rgba(19,21,24,.5);
        left: 0;
        position: absolute;
        top: 60px;
        transform-origin: center
    }

        .dag-visual-editor .canvas .pan-handle {
            cursor: grab;
            display: block;
            height: 100%;
            position: normal !important;
            width: 100%
        }

            .dag-visual-editor .canvas .pan-handle:active {
                cursor: grabbing
            }

    .dag-visual-editor .controls {
        align-items: center;
        background-color: var(--theme-bg-input,rgba(234,238,241,.9));
        box-shadow: 0 0 3px rgba(19,21,24,.5);
        display: flex;
        justify-content: space-between;
        left: 0;
        padding: 5px 15px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 4
    }

        .dag-visual-editor .controls .validation-error {
            align-items: center;
            background-color: rgba(255,101,69,.9);
            bottom: 0;
            color: #fefefe;
            display: flex;
            font-size: 1.2em;
            font-weight: 700;
            left: 0;
            line-height: 1.4em;
            padding: 15px;
            position: fixed;
            width: 100%
        }

            .dag-visual-editor .controls .validation-error.top {
                bottom: auto;
                position: absolute;
                top: 100%
            }

            .dag-visual-editor .controls .validation-error i {
                font-size: 1.8em;
                margin-left: none;
                margin-right: .8em
            }

    .dag-visual-editor pre.debugger {
        box-sizing: border-box;
        height: 100%;
        left: 0;
        margin: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -3
    }

.edit-parent-task textarea.json {
    height: 200px
}

.child-task-form label.input-group textarea {
    height: 100px
}

* {
    box-sizing: border-box
}

.not-found .modal {
    min-width: 60%
}

.not-found .modal .not-found-content {
	animation: shake .52s ease both
}

.not-found .modal .not-found-content h1 {
	border-bottom: 1px solid var(--theme-border,#eaeef1);
	padding-bottom: 10px
}

.swal2-styled.swal2-confirm {
	background-color: #041E42 !important;
}

.swal2-styled.swal2-confirm:hover {
	background-color: #FAFAFA !important;
	color: #041E42 !important;
}

.swal-button {
	background-color: #041E42 !important;
}

.swal2-styled:focus {
	box-shadow: none !important;
}

.swal2-popup {
	width: 34em !important;
}

.swal2-input:focus {
	box-shadow: 0 0 0 2px #041E42 !important;
}

.swal2-loader {
    width: 30px !important;
	height: 30px !important;
	box-sizing: border-box !important;
	border: 2px solid transparent !important;
	border-top-color: #041E42 !important;
	border-left-color: #041E42 !important;
	border-radius: 50% !important;
	animation: nprogress-spinner .4s linear infinite !important;
}

.iframe-custom {
	position: absolute;
	top: 109px;
	left: 0;
	right: 0;
	bottom: 62px;
}

.iframe-custom iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
}

.iframe-custom-h {
	display:none;
}

.nav-name {
	margin: 12px 8px 12px 0px !important;
}

.log-out-btn {
	margin: 6px 0px 6px 0px !important;
	cursor: pointer !important;
}

.fetch-logs {
	margin-top: 8px;
}

.language-swap-style {
	padding-top: 30px;
	padding-right: 5px;
	padding-left: 5px;
	font-size: 20px;
}

.file-drop-style {
	font-size: 14px;
}

.textarea-rows {
    height: 160px !important;
    resize: none !important;
}

.feedback-style {
	float: right !important;
	cursor: pointer !important;
}

.download-btn {
	margin-top: 9px;
	padding-left: 10px;
}

.download-input {
	width: 300px;
}

.half-frm {
	margin: auto !important; 
	width: 50% !important; 
}

li {
	display: inline;
	padding: 10px;
}

.powered-by-logo {
	width: 205px;
    height: 62px;
	position: absolute; 
	bottom: 0;
	right: 0;
}

.center-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.warning-style {
    color: red;
}

.clear-icon {
    position: relative;
    font-size: 15px !important;
    visibility: hidden;
    padding: 5px;
    top: -68px;
}