@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px !important;
    background-color: #e9ecef;
    height: 100%;
}

#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;
    }


app {
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
}

.top-row {
    height: 2.5rem;
    display: flex;
    align-items: center;
}

.main {
    width: 100%;
    height: 100% !important;
    min-height: 100%;
}

    .main .top-row {
        background-color: #153d77;
        border-bottom: 1px solid #153d77;
    }

        .main .top-row .right {
            justify-content: flex-end;
        }

        .main .top-row .left {
            justify-content: flex-start;
        }

            .main .top-row .right > a, .main .top-row .right .btn-link, .main .top-row .left > a, .main .top-row .left .btn-link {
                white-space: nowrap;
                color: #fff;
                margin-left: 1.5rem;
            }


            .main .top-row .left a:first-child, .main .top-row .left a:first-child {
                overflow: hidden;
                text-overflow: ellipsis;
            }

.sidebar {
    background-image: linear-gradient(180deg, #e9ecef 00%, #e9ecef 100%);
}

    .sidebar .top-row {
        background-color: #FFFFFF;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 103, 184, 0.19);
        height: 2.5rem;
    }

    .sidebar .navbar-brand {
        font-size: 0.9rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 0.9rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar .nav-item {
        font-size: 0.85rem;
        padding-bottom: 0.5rem;
    }

        .sidebar .nav-item:first-of-type {
            padding-top: 1rem;
        }

        .sidebar .nav-item:last-of-type {
            padding-bottom: 1rem;
        }

        .sidebar .nav-item a {
            color: #153d77;
            border-radius: 4px;
            height: 2rem;
            display: flex;
            align-items: center;
            line-height: 2rem;
        }

            .sidebar .nav-item a.active {
                background-color: #153d77;
                color: white;
            }

            .sidebar .nav-item a:hover {
                background-color: #153d77;
                color: white;
            }



.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 0.65rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.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;
    }

@media (max-width: 767.98px) {
    .main .top-row:not(.auth) {
        display: none;
    }

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 220px;
        position: sticky;
        top: 0;
        height: 100%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 103, 184, 0.19);
    }

    .main .top-row {
        position: sticky;
        top: 0;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 103, 184, 0.19);
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-item a.active::after {
        content: "*";
        margin-left: 1rem;
    }
}

.footer {
    margin-top: 10px;
    height: 40px;
    padding: 10px;
    background-color: #e9ecef;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 103, 184, 0.19);
}


.content-header {
    padding: 1px 0.5rem;
}




.toast {
    display: none;
    padding: 1.5rem;
    color: #fff;
    z-index: 1;
    position: absolute;
    width: 25rem;
    top: 3rem;
    border-radius: 1rem;
    right: 10%;
}

.toast-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    font-size: 2.5rem;
}

.toast-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 1rem;
}

    .toast-body p {
        margin-bottom: 0;
    }

.toast-visible {
    display: flex;
    flex-direction: row;
    animation: fadein 1.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.sidebarlink:active {
    color: #fff !important;
}

.sidebarlink:hover {
    color: #fff !important;
}



.drag-drop-zone input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

pre {
    background-color: #f0f0f0;
    overflow: auto;
    padding: 1rem;
    height: 10rem;
}

.my-custom-scrollbar {
    position: relative;
    height: 450px;
    overflow: auto;
    width: 100px;
}



.my-custom-scrollbar300 {
    position: relative;
    height: 370px;
    overflow: auto;
}


.table-wrapper-scroll-y {
    display: block;
}

th {
    background: #153d77;
    position: sticky;
    top: 0; /* Don't forget this, required for the stickiness */
}

td {
    white-space: nowrap;
}



option:hover {
    background-color: #153d77 !important;
}

.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

#hiddenGrid.e-grid .e-gridheader .e-columnheader {
    display: none !important;
}

.bg-light-blue {
    background-color: #cfe7ff;
}


.btn-outline-pdf {
    color: #F40F02;
    border-color: #F40F02
}

    .btn-outline-pdf:hover {
        color: #fff;
        background-color: #F40F02;
        border-color: #F40F02
    }

    .btn-outline-pdf.focus, .btn-outline-pdf:focus {
        box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
    }

    .btn-outline-pdf.disabled, .btn-outline-pdf:disabled {
        color: #F40F02;
        background-color: transparent
    }

    .btn-outline-pdf:not(:disabled):not(.disabled).active, .btn-outline-pdf:not(:disabled):not(.disabled):active, .show > .btn-outline-pdf.dropdown-toggle {
        color: #fff;
        background-color: #F40F02;
        border-color: #F40F02
    }

        .btn-outline-pdf:not(:disabled):not(.disabled).active:focus, .btn-outline-pdf:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-pdf.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
        }

..form-select option.active, .form-select option:active, .form-select option.focus, .form-select option:focus, .form-select option:hover {
    background-color: #153d77;
    color: #fff;
}



.btn-pdf {
    color: #fff;
    background-color: #F40F02;
    border-color: #F40F02;
}

    .btn-pdf:hover {
        color: #fff;
        background-color: #bb2d3b;
        border-color: #b02a37;
    }

    .btn-check:focus + .btn-pdf, .btn-pdf:focus {
        color: #fff;
        background-color: #bb2d3b;
        border-color: #b02a37;
        box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
    }

    .btn-check:checked + .btn-pdf, .btn-check:active + .btn-pdf, .btn-pdf:active, .btn-pdf.active, .show > .btn-pdf.dropdown-toggle {
        color: #fff;
        background-color: #b02a37;
        border-color: #a52834;
    }

        .btn-check:checked + .btn-pdf:focus, .btn-check:active + .btn-pdf:focus, .btn-pdf:active:focus, .btn-pdf.active:focus, .show > .btn-pdf.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
        }

    .btn-pdf:disabled, .btn-pdf.disabled {
        color: #fff;
        background-color: #F40F02;
        border-color: #F40F02;
    }


.main-nav {
    box-shadow: 0 0 0 0.25em #ffc107 !important;
    z-index: 1000 !important;
}

/*.img-thumbnail {
    background-color: #ffc107 !important;
}
*/
.nav-menu-font18 {
    font-size: 16px !important;
}

.dropdown-menu.show {
    max-height: 500px !important;
    overflow: auto;
}


.e-float-input input:focus ~ label.e-float-text,
.e-float-input input:valid ~ label.e-float-text,
.e-float-input input ~ label.e-label-top.e-float-text,
.e-float-input input[readonly] ~ label.e-label-top.e-float-text,
.e-float-input input[disabled] ~ label.e-label-top.e-float-text,
.e-float-input input label.e-float-text.e-label-top,
.e-float-input.e-control-wrapper input:focus ~ label.e-float-text,
.e-float-input.e-control-wrapper input:valid ~ label.e-float-text,
.e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper input[readonly] ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper input label.e-float-text.e-label-top,
.e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text,
.e-float-input.e-input-focus input ~ label.e-float-text {
    font-size: 12px;
    padding-right: 0;
    transform: translate3d(-10px, -35px, 0) scale(1) !important;
}

.e-float-input.e-bigger.e-small input:focus ~ label.e-float-text,
.e-float-input.e-bigger.e-small input:valid ~ label.e-float-text,
.e-float-input.e-bigger.e-small input ~ label.e-label-top.e-float-text,
.e-float-input.e-bigger.e-small input[readonly] ~ label.e-label-top.e-float-text,
.e-float-input.e-bigger.e-small input[disabled] ~ label.e-label-top.e-float-text,
.e-float-input.e-bigger.e-small input label.e-float-text.e-label-top,
.e-bigger .e-float-input.e-small input:focus ~ label.e-float-text,
.e-bigger .e-float-input.e-small input:valid ~ label.e-float-text,
.e-bigger .e-float-input.e-small input ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input.e-small input[readonly] ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input.e-small input[disabled] ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input.e-small input label.e-float-text.e-label-top,
.e-small .e-float-input.e-bigger input:focus ~ label.e-float-text,
.e-small .e-float-input.e-bigger input:valid ~ label.e-float-text,
.e-small .e-float-input.e-bigger input ~ label.e-label-top.e-float-text,
.e-small .e-float-input.e-bigger input[readonly] ~ label.e-label-top.e-float-text,
.e-small .e-float-input.e-bigger input[disabled] ~ label.e-label-top.e-float-text,
.e-small .e-float-input.e-bigger input label.e-float-text.e-label-top,
.e-float-input.e-control-wrapper.e-bigger.e-small input:focus ~ label.e-float-text,
.e-float-input.e-control-wrapper.e-bigger.e-small input:valid ~ label.e-float-text,
.e-float-input.e-control-wrapper.e-bigger.e-small input ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper.e-bigger.e-small input[readonly] ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper.e-bigger.e-small input[disabled] ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper.e-bigger.e-small input label.e-float-text.e-label-top,
.e-bigger .e-float-input.e-control-wrapper.e-small input:focus ~ label.e-float-text,
.e-bigger .e-float-input.e-control-wrapper.e-small input:valid ~ label.e-float-text,
.e-bigger .e-float-input.e-control-wrapper.e-small input ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input.e-control-wrapper.e-small input[readonly] ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input.e-control-wrapper.e-small input[disabled] ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input.e-control-wrapper.e-small input label.e-float-text.e-label-top,
.e-small .e-float-input.e-control-wrapper.e-bigger input:focus ~ label.e-float-text,
.e-small .e-float-input.e-control-wrapper.e-bigger input:valid ~ label.e-float-text,
.e-small .e-float-input.e-control-wrapper.e-bigger input ~ label.e-label-top.e-float-text,
.e-small .e-float-input.e-control-wrapper.e-bigger input[readonly] ~ label.e-label-top.e-float-text,
.e-small .e-float-input.e-control-wrapper.e-bigger input[disabled] ~ label.e-label-top.e-float-text,
.e-small .e-float-input.e-control-wrapper.e-bigger input label.e-float-text.e-label-top,
.e-float-input.e-bigger.e-small.e-input-focus input ~ label.e-float-text,
.e-bigger .e-float-input.e-small.e-input-focus input-group-animation ~ label.e-float-text,
.e-small .e-float-input.e-bigger.e-input-focus input ~ label.e-float-text,
.e-float-input.e-control-wrapper.e-bigger.e-small.e-input-focus input ~ label.e-float-text,
.e-bigger .e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text,
.e-small .e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text {
    padding-right: 0;
    transform: translate3d(-10px, -35px, 0) scale(1) !important;
}

e-float-input.e-bigger input:focus ~ label.e-float-text,
.e-float-input.e-bigger input:valid ~ label.e-float-text,
.e-float-input.e-bigger input ~ label.e-label-top.e-float-text,
.e-float-input.e-bigger input[readonly] ~ label.e-label-top.e-float-text,
.e-float-input.e-bigger input[disabled] ~ label.e-label-top.e-float-text,
.e-float-input.e-bigger input label.e-float-text.e-label-top,
.e-bigger .e-float-input input:focus ~ label.e-float-text,
.e-bigger .e-float-input input:valid ~ label.e-float-text,
.e-bigger .e-float-input input ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input input[readonly] ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input input[disabled] ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input input label.e-float-text.e-label-top,
.e-float-input.e-control-wrapper.e-bigger input:focus ~ label.e-float-text,
.e-float-input.e-control-wrapper.e-bigger input:valid ~ label.e-float-text,
.e-float-input.e-control-wrapper.e-bigger input ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper.e-bigger input[readonly] ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper.e-bigger input[disabled] ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper.e-bigger input label.e-float-text.e-label-top,
.e-bigger .e-float-input.e-control-wrapper input:focus ~ label.e-float-text,
.e-bigger .e-float-input.e-control-wrapper input:valid ~ label.e-float-text,
.e-bigger .e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input.e-control-wrapper input[readonly] ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
.e-bigger .e-float-input.e-control-wrapper input label.e-float-text.e-label-top,
.e-float-input.e-bigger.e-input-focus input ~ label.e-float-text,
.e-bigger .e-float-input.e-input-focus input ~ label.e-float-text,
.e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text,
.e-bigger .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
    padding-right: 0;
    transform: translate3d(-10px, -35px, 0) scale(1) !important;
}



.pageMenuHeader {
    position: sticky !important;
    top: 0 !important;
    z-index: 1;
}
.w-3 {
    width: 3% !important;
}
.w-4 {
    width: 4% !important;
}
.w-5 {
    width: 5% !important;
}
.w-6 {
    width: 6% !important;
}
.w-7 {
    width: 7% !important;
}
.w-8 {
    width: 8% !important;
}
.w-9 {
    width: 9% !important;
}
.w-10 {
    width:10% !important;
}
.w-12 {
    width: 12.5% !important;
}
.w-15 {
    width: 15% !important;
}
.w-20 {
    width: 20% !important;
}
.w-30 {
    width: 30% !important;
}
.w-35 {
    width: 35% !important;
}
.w-40 {
    width: 40% !important;
}
.w-70 {
    width: 70% !important;
}

.w-90 {
    width: 90% !important;
}
.w-85 {
    width: 85% !important;
}
.w-80 {
    width: 80% !important;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class*="w-"] {
        width: 100% !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
}

fieldset.scheduler-border {    
    padding: 0 1.4em 1.4em 1em !important;
    margin: 0 0 1em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px ;
}

legend.scheduler-border {
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-align: left !important;
    width: auto;
    padding: 0 5px;
    margin: 0 10px;
    border-bottom: none;
    background-color: white;
}
legend.transform-top {
    transform: translate3d(-10px, -11px, 0) scale(1) !important;
}
#listboxLabel {
    transform: translate3d(-0px, -8px, 0) scale(1) !important;
}


.e-dialog .e-dlg-header-content {
    padding: 10px 14px 10px 14px !important;
}

.e-footer-content {
    padding: 10px 14px 10px 14px !important;
}
.e-dialog .e-dlg-header {
    width: auto !important;
    
}

.e-selectionbackground {
    background-color: #153d77 !important;
    color: white !important;
    font-weight: bold !important;
}

/*.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
    margin-top: -0px !important;
    margin-right:5px;
     
}
*/
/*.e-icon-dlg-close {
    color: #ffffff !important;
    background-color: #153d77 !important;
}
.e-dialog .e-icon-dlg-close::before {
    background-color: #153d77 !important;
    color: #ffffff !important;
    border-radius:3px 4px;
    padding:10px;
}*/

@media print {
    #nonprintarea, #nonprintarea * {
        display: none !important;
    }

    #printTable.table {
        table-layout: fixed;
        page-break-inside: auto;
    }
        #printTable.table tr {
            page-break-inside: avoid;
            page-break-after: auto;
        }
        #printTable.table th {
            border: .5px solid black;
        }

        #printTable.table tr td {
            border: .5px solid black;
            word-wrap: break-word !important;
            white-space: initial;

        }


    .pagebreak {
        page-break-before: always;
    }
    /* page-break-after works, as well */
}

.contentFooter {
    position: sticky !important;
    bottom: 0 !important;
    z-index: 1;
}
.custom-listbox
{
    height:150px !important;
}

.e-calendar th,
.e-bigger.e-small .e-calendar th {
    border-bottom: 0;
    color: #fff !important;
}

.e-float-input, .e-float-input.e-control-wrapper {
    margin-top:0px !important;
}


.e-control-wrapper.touppercase .e-textbox {
    text-transform: uppercase;
}
.e-control-wrapper.tolowercase .e-textbox {
    text-transform: lowercase;
}
.e-control-wrapper.tocapitalize .e-textbox {
    text-transform: capitalize;
}
.badge
{
    padding: .3em .60em !important;
    font-size: 1em !important;
}
.e-grid .e-gridheader .e-sortfilter .e-headercelldiv, .e-grid .e-gridheader .e-stackedheadercelldiv, .e-grid.e-responsive .e-rowcell, .e-grid.e-responsive .e-headercelldiv {
    padding: 2px 15px 2px 5px !important;
    height: fit-content !important;
}

legend.transform-top-inner {
    transform: translate3d(-10px, -6px, 0) scale(1) !important;
    font-size: 1em !important;
}

.placeholderbold ::placeholder {
    color: black !important;
    opacity: 1; /* Firefox */
    font-weight: bold;
    
}