@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('fontello/css/fontello-embedded.css');

:root {
    /*    
        --bs-root-font-size: 0.875em;
    --bs-body-font-size: 0.875em;
    --bs-nav-link-font-size: 0.875em;
    */

    --dashboard-grid-gap: 16px;
    --dashboard-grid-height: 64px;
    --dashboard-panel-title-height: 32px;
    /*custom colors*/
    --red: red;
    --green: green;
    --page-header-title-font-size: 24px;
    --calendar-event-minute: 1.25px;
    --calendar-event-spacing: 4px;
    --calendar-month-view-day-height: 180px;
    /*
    --brand-color: #10A574;
    --brand-accent-color: #10A574;
    --brand-background-color: #DDD;

    --brand-color-rgb: #10A574;
    --brand-accent-color-rgb: #10A574;
    --brand-background-color-rgb: #DDD;
   */
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
    overflow: hidden;
    margin: 0; /* Removes default style */
}

@media screen and (max-width: 575.98px) {
    body {
        overflow: auto;
        /*background-color: lightgreen;*/
    }
}

h1:focus {
    outline: none;
}

/**** BRAND COLORS  */
a, .btn-link {
    color: var(--brand-color);
}

    a:hover, .btn-link:hover {
        color: var(--brand-color-dark-50);
    }

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary {
    background-color: var(--brand-color);
    border-color: var(--brand-color-dark-50);
}

.form-check-input:checked {
    background-color: var(--brand-color);
    border-color: var(--brand-color-dark-50);
}


.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:hover {
    background-color: var(--brand-color-dark-50);
    border-color: var(--brand-color-dark-50);
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
    background-color: var(--brand-color-dark-50);
    border-color: var(--brand-color-dark-50);
    box-shadow: 0 0 0 0.25rem rgba(var(--brand-color-rgb-light-50),.5);
}

/* btn-inline should be used in conjuction with btn ie class="btn btn-inline
    the overall effect is that:
    text is not obviously clickable but is
    related icons are coloured
    Text should be rendered inline. 
    There is a hover effect
    It looks nice when rendered within <p class="form-control-plain-text"></p>
*/
.btn-inline {
    padding: 0;
}

    .btn-inline > .icon {
        color: var(--brand-color);
    }

    .btn-inline:hover > .icon {
        color: var(--brand-color-dark-50);
    }

    .btn-inline:hover {
        text-decoration: underline;
    }
/* page links are the pagination navigators*/
.page-link {
    color: var(--brand-color);
}

    .page-link:hover {
        color: var(--brand-color-dark-50);
    }

.page-item.active .page-link {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
}

.page-item.disabled .page-link {
    border-color: var(--bs-border-color-translucent);
    color: var(--bs-border-color);
    background-color: white;
}

.nav, .nav-link {
    --bs-nav-link-color: var(--brand-color);
    --bs-nav-link-hover-color: var(--brand-color-light-50);
}

.nav-pills {
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        background-color: var(--brand-color);
    }




/**** BRAND COLORS END  */
/* ALERT mods */
.alert > dl,
.alert > ol,
.alert > ul {
    margin-bottom: 0em;
}
/* ALERT mods END*/
/**** PLACEHOLDER   */
.form-control::-moz-placeholder {
    color: var(--bs-secondary-color);
    opacity: 0.5;
}

.form-control::placeholder {
    color: var(--bs-secondary-color);
    opacity: 0.5;
}
/*******/
/***btn-light fix (too light/ not visible) */
.btn-light {
    border-color: var(--bs-border-color);
    background-color: var(--bs-tertiary-bg);
}

    .btn-check:active + .btn-light,
    .btn-check:checked + .btn-light,
    .btn-light.active,
    .btn-light:active,
    .show > .btn-light.dropdown-toggle {
        background-color: var(--bs-tertiary-bg);
    }

    .btn-light:hover {
        background-color: color-mix(in srgb, var(--bs-tertiary-bg) 97%, black 3%);
    }

    .btn-light.disabled, .btn-light:disabled {
        border-color: var(--bs-border-color);
        color: color-mix(in srgb, var(--bs-btn-color) 30%, white 70%);
        background-color: color-mix(in srgb, var(--bs-tertiary-bg) 50%, white 50%);
        opacity: 1;
    }
/**END*/
/***btn-card-option - buttons for card rows */
.btn-card-option {
    border-color: var(--bs-border-color) !important;
    background-color: transparent !important;
    margin-right: 4px;
    padding: 0.25rem 0.375rem;
}

/* for use in highlighting col cells */
.col-link:hover {
    text-decoration: underline;
}

.card-row:hover .btn-card-option:hover {
    border-color: var(--bs-border-color) !important;
    background-color: var(--bs-body-bg) !important;
}
/**END*/


/** btn-xs */
.btn-group-xs > .btn, .btn-xs {
    padding: .15rem .2rem;
    font-size: 0.7rem;
}
/** END btn-xs */

/** short-code */
.short-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.675em;
    width: 2em;
    height: 2em;
    white-space: nowrap;
    vertical-align: middle;
    line-height: 1; /* Ensure text is vertically centered */
}

    .card-row-muted > .short-code,
    .card-row-muted .short-code,
    .text-muted > .short-code,
    .short-code[disabled] {
        opacity: 0.4;
    }

.short-code-user {
    border-radius: 50%;
}
/** END short-code */
.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }


#loading-progress-indicator {
    margin: 20% auto;
}

    #loading-progress-indicator .progress-hero {
        width: 50vw;
        margin: auto;
    }

        #loading-progress-indicator .progress-hero img {
            max-width: 100%;
        }

        #loading-progress-indicator .progress-hero .progress-text {
            margin-top: 32px;
        }

.linear-progress {
    background: silver;
    width: 50vw;
    margin: 32px auto;
    height: 1rem;
    border-radius: 10rem;
    overflow: hidden;
    position: relative;
}

    .linear-progress:after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--brand-color);
        scale: var(--blazor-load-percentage, 0%) 100%;
        transform-origin: left top;
        transition: scale ease-out 0.5s;
    }

.login-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 40px;
    /* background-color: #f5f5f5; */
    /* height:100%; */
    width: 100%;
    align-content: center;
}

.login-title {
    align-self: center;
    padding-bottom: 20px;
}

.login-subtitle {
    align-self: center;
    padding-bottom: 114px;
}

.login-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
/*
.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}

    .form-signin .checkbox {
        font-weight: 400;
    }

    .form-signin .form-control {
        position: relative;
        box-sizing: border-box;
        height: auto;
        padding: 10px;
        font-size: 16px;
    }

        .form-signin .form-control:focus {
            z-index: 2;
        }

    .form-signin input {
        margin-bottom: 5px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

        .form-signin input[type="password"] {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }
    */
.is-busy {
    opacity: 0.65;
}

.flex-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    /*see: https://stackoverflow.com/questions/39472747/text-overflow-ellipsis-and-flex
        might need min-width:0
    */
}

.flex-ellipsis-start {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    direction: rtl; /* Right-to-left text direction */
    text-align: left; /* Align text to the left */
    min-width: 0;
}



.container-flex > .card-row-result-header,
.container-flex > .card-row-result-footer,
.container > .card-row-result-header,
.container > .card-row-result-footer {
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    min-height: 3em;
    align-items: center;
}

    .container-flex > .card-row-result-header .pagination,
    .container-flex > .card-row-result-footer .pagination,
    .container > .card-row-result-header .pagination,
    .container > .card-row-result-footer .pagination {
        margin-bottom: 0;
    }

.result-options h1,
.result-options h2,
.result-options h3,
.result-options h4,
.result-options h5,
.result-options h6 {
    margin: 0;
}

.card-row-header,
.card-row {
    padding: 0.5em 0.5em;
}

.container-flex > .card-row-footer,
.container > .card-row-footer,
.container-flex > .card-row-header,
.container > .card-row-header {
    font-weight: bold;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
}

.container-flex > .card-row,
.container > .card-row {
    border-color: darkgrey;
    border-bottom: 1px solid #DDD;
}

    .container-flex > .card-row:first-child, .container > .card-row:first-child {
        border-top: 1px solid #666;
    }

    .container-flex > .card-row:last-child,
    .container > .card-row:last-child {
        border-bottom: 1px solid #666;
    }

    .container-flex > .card-row:hover,
    .container > .card-row:hover {
        cursor: pointer;
        background-color: #EEE;
    }

.container-flex > .card-row-primary,
.container > .card-row-primary {
    background-color: #cfe2ff;
}

.container-flex .card-row-muted,
.container .card-row-muted {
    cursor: not-allowed;
    color: silver;
}

.col-separator {
    border-left: 1px solid #DDD
}

/* modification so that input-group-text with '£' and '%' are the same size*/
.input-group-text {
    min-width: 40px;
}

.w-33 {
    width: 33.33%;
}

.form-button-bar button,
.form-button-bar a {
    margin-right: 4px;
}

.dashboard-container-bg,
.dashboard-container-edit,
.dashboard-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(24, var(--dashboard-grid-height));
    gap: var(--dashboard-grid-gap);
    position: relative;
    width: 100%;
}

@media (max-width: 1024px) {
    .dashboard-container-bg, .dashboard-container-edit, .dashboard-container, .dashboard-container-preview {
        display: block;
    }

    .dashboard-panel {
        margin-bottom: 8px;
    }
}

.dashboard-container-preview {
    background-color: whitesmoke;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, var(--dashboard-grid-height));
    gap: var(--dashboard-grid-gap);
    position: relative;
    width: 100%;
}


.dashboard-panel-bg {
    background-color: whitesmoke;
}

.dashboard-panel-edit {
    background-color: aliceblue;
}

.dashboard-panel {
    position: relative;
    border: 1px solid silver;
    border-radius: 4px;
    background-color: white;
    /*background-color: silver;*/
}

.dashboard-panel-tools {
    position: absolute;
    width: 100%;
    text-align: right;
}

.dashboard-panel-title {
    width: 100%;
    font-size: 1.1em;
    text-align: center;
    vertical-align: middle;
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    height: var(--dashboard-panel-title-height);
}

.table-hscroll-container {
    width: 100%;
    overflow: auto;
}

.table-mini > :not(caption) > * > * {
    padding: 0.25rem 0.25rem;
    font-size: 0.8em;
}

.align-text-right {
    text-align: right;
}

/* icons */
.icon-reconcile-status-none:before {
    content: '\e831';
}

.icon-reconcile-status-complete:before {
    color: var(--bs-success);
    content: '\e860';
}

.icon-reconcile-status-error:before {
    color: var(--bs-danger);
    content: '\f0ec';
}

.icon-reconcile-status_partial:before {
    color: var(--bs-warning);
    content: '\e807';
}

.console {
    color: white;
    background-color: black;
    margin-bottom: 0;
}
/*** page title*/
.page-header {
    margin-top: 1em;
}

    .page-header .type-description {
        font-size: 1em;
        color: #666;
    }

    .page-header .friendly-id {
        font-size: 1em;
        color: #666;
    }

    .page-header .title {
        font-size: var(--page-header-title-font-size);
        vertical-align: middle;
        display: inline-block;
    }

        /* for use of title select / saved query select / dashboar select */
        .page-header .title .blazored-typeahead {
            min-width: 280px;
            padding: 0;
            border: 0;
        }

            .page-header .title .blazored-typeahead .blazored-typeahead__input-icon,
            .page-header .title .blazored-typeahead .blazored-typeahead__input-mask-wrapper {
                font-size: var(--page-header-title-font-size);
                padding: 0;
                border: 0;
            }

            .page-header .title .blazored-typeahead .blazored-typeahead__input-mask {
                font-size: var(--page-header-title-font-size);
                padding: 0;
            }

            .page-header .title .blazored-typeahead .blazored-typeahead__results {
                font-size: var(--bs-body-font-size);
            }

    .page-header .title-actions {
        padding-left: 8px;
        display: inline-block;
    }

    .page-header .prev-next-caption {
        font-size: 0.9em;
    }

    .page-header .breadcrumb {
        margin-bottom: 0;
        line-height: 2em;
    }

        .page-header .breadcrumb .breadcrumb-item {
            color: var(--bs-gray-700);
            font-size: 0.9em;
        }

            .page-header .breadcrumb .breadcrumb-item a {
                color: var(--bs-gray-700);
                text-decoration: none;
            }

                .page-header .breadcrumb .breadcrumb-item a:hover {
                    text-decoration: underline;
                }

/**END*/
/*** blazored typeahead*/

.input-group > .blazored-typeahead {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.blazored-typeahead {
    position: relative;
    min-width: 120px;
    width: 100%;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    border-color: var(--bs-border-color);
}

    .blazored-typeahead.blazored-typeahead-sm {
        /*background-color: lightpink;*/
    }

        .blazored-typeahead.blazored-typeahead-sm .blazored-typeahead__controls {
            font-size: 0.75em;
        }

    .blazored-typeahead.valid.modified {
        outline: none !important;
        border: 1px solid #26b050;
    }

    .blazored-typeahead.invalid {
        outline: none !important;
        border: 1px solid red;
    }

.blazored-typeahead__controls {
    position: relative;
    cursor: text;
    display: flex;
}

.blazored-typeahead__input {
    flex: 1;
    width: 100%;
    margin: 0.25em;
    border: none;
    padding: .5rem;
    border-bottom: 1px solid black;
}

.blazored-typeahead:focus-within {
    box-shadow: 0 0 0 0.2rem rgba(38,143,255,.5);
}

.blazored-typeahead__input:focus {
    outline: none;
}

.blazored-typeahead__input-multi:focus {
    outline: none;
    box-shadow: none;
}

.blazored-typeahead__input-hidden {
    display: none;
}

.invalid {
    border-color: red !important;
}


.blazored-typeahead__input-mask-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    width: 100%;
}

.blazored-typeahead__input-multiselect-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}

.blazored-typeahead__input-mask-wrapper--disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
    border-radius: 5px 0 0 5px;
    color: grey;
}

    .blazored-typeahead__input-mask-wrapper--disabled:focus {
        border: none;
    }

.blazored-typeahead__input-mask {
    flex: 1;
    height: 100%;
    padding: .375rem .75rem;
}

    .blazored-typeahead__input-mask:focus {
        outline: none;
    }

.blazored-typeahead__clear {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray);
    cursor: pointer;
    width: 24px;
    margin-left: auto
}

    .blazored-typeahead__clear:hover {
        color: var(--bs-gray-dark);
    }

.blazored-typeahead__input-icon {
    display: flex;
    padding: .375rem .25rem;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    width: 40px;
}

    .blazored-typeahead__input-icon:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(38,143,255,.5);
    }

    .blazored-typeahead__input-icon:hover {
        background-color: #f5f5f5;
        color: var(--bs-gray-dark);
    }

.blazored-typeahead__input-icon--disabled,
.blazored-typeahead__input-icon--disabled:hover {
    background-color: #e9ecef;
    cursor: not-allowed;
    color: var(--bs-gray-light);
}

.blazored-typeahead__multi-value {
    background-color: #dbdbdb;
    display: flex;
    align-items: center;
    min-width: 0px;
    box-sizing: border-box;
    border-radius: 2px;
    margin: .4rem 0 .4rem .4rem;
}

.blazored-typeahead__multi-value-label {
    color: rgb(51, 51, 51);
    font-size: 85%;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
    border-radius: 2px;
    overflow: hidden;
    padding: 3px 3px 3px 6px;
}

.blazored-typeahead__multi-value-clear {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    padding-left: 4px;
    padding-right: 4px;
    box-sizing: border-box;
    border-radius: 2px;
    background-color: transparent;
    border: 0;
    outline: none;
}

    .blazored-typeahead__multi-value-clear:focus {
        outline: none;
    }

    .blazored-typeahead__multi-value-clear:hover {
        background-color: rgb(212, 212, 212);
        color: rgb(222, 53, 11);
    }

.blazored-typeahead__filter-container {
    width: 100%;
    height: 40px;
    display: flex;
}

.blazored-typeahead__filter-icon {
    width: 24px;
    padding-top: 12px;
    vertical-align: middle;
    align-items: center;
}

.blazored-typeahead__results-hidden {
    display: none;
}

.blazored-typeahead__results {
    position: absolute;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    border: 1px solid #dbdbdb;
    min-height: 2rem;
    max-height: 30rem;
    overflow-y: auto;
    z-index: 10;
    width: 100%;
    background: #fff;
}

.blazored-typeahead__result,
.blazored-typeahead__notfound,
.blazored-typeahead__results-help-template,
.blazored-typeahead__results-header,
.blazored-typeahead__results-footer {
    padding: .5rem;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.blazored-typeahead__selected-item {
    background-color: #dbdbdb;
}


.blazored-typeahead__selected-item-highlighted {
    background-color: var(--brand-color);
    color: #fff;
}

.blazored-typeahead__active-item,
.blazored-typeahead__result:hover,
.blazored-typeahead__result:focus {
    background-color: var(--bs-gray-300);
    border-top: 1px solid var(--bs-gray-400);
    border-bottom: 1px solid var(--bs-gray-400);
    cursor: pointer;
}

.blazored-typeahead__loader {
    width: 24px;
    height: 24px;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}
/*** end blazored typahead*/

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/*tool tip*/

.tooltip-wrapper {
    position: relative;
    /* 
        don't know why this (display: table-cell;) works but it does
        use case: two tool tips next to each each, this ignores white space when laying out
        to test, compare:
        <ToolTip>...</ToolTip><ToolTip>...</ToolTip>
        with:
        <ToolTip>...</ToolTip>
        <ToolTip>...</ToolTip>
    */
    display: inline;
    cursor: help;
}

    .tooltip-wrapper.tooltip-wrapper-underline {
        border-bottom: 1px dotted black;
    }

.dashboard-panel-tools > .tooltip-wrapper {
    /* right align when use in dashb panel */
    position: relative;
    display: inline;
}

#tooltip {
    box-sizing: border-box;
    visibility: hidden;
    white-space: pre-wrap;
    height: fit-content;
    position: absolute;
    background-color: rgba(26,26,26,0.8);
    font-size: 0.875em;
    width: 400px;
    margin-bottom: 6px;
    color: #fff;
    text-align: left;
    padding: 8px 8px;
    border-radius: 6px;
    z-index: 1080;
    font-weight: normal;
}

    #tooltip.tooltip-default,
    #tooltip.tooltip-sm,
    #tooltip.tooltip-xs,
    #tooltip.tooltip-xxs {
        text-align: center;
        width: 120px;
    }

    #tooltip.tooltip-arrow-down::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -12px;
        border-width: 8px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

    #tooltip.tooltip-arrow-up::after {
        content: "";
        position: absolute;
        bottom: 100%; /* Place arrow at the bottom of the tooltip */
        left: 50%;
        margin-left: -12px; /* Center the arrow */
        border-width: 8px;
        border-style: solid;
        border-color: transparent transparent #555 transparent; /* Upwards arrow */
    }
