@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

/*main {
    height: 100vh;
    width: 100vw;
    background-color: #3ac96f;
}*/
html, body {
    font-family: 'Helvetica Neue', Quicksand, Helvetica, Arial, sans-serif;
}

/* Elements for DevExpress 22.2.4 now begin with dxbl */

/***************************************************/
/* Class to fix Layout vertical alignment issue    */
/***************************************************/

.remove-margin > div {
    margin-top: unset !important;
    align-self: start !important
}

/***************************************************/
/* Classes to overide DevExpress Button Colors     */
/***************************************************/

.dxbl-btn-primary {
    color: #fff !important;
    background-color: #216885 !important;
}

    .dxbl-btn-primary:hover {
        color: #fff !important;
        background-color: #164659 !important;
    }

    .dxbl-btn-primary[disabled]:hover {
        color: #fff !important;
        background-color: #808080 !important;
        border-color: #216885 !important;
    }

    .dxbl-btn-primary[disabled] {
        color: #fff !important;
        background-color: #808080 !important;
        border-color: #216885 !important;
    }

.dxbl-btn-outline-primary {
    color: #216885 !important;
    background-color: #fff !important;
    border-color: #216885 !important;
}

    .dxbl-btn-outline-primary:hover {
        color: #fff !important;
        background-color: #216885 !important;
        border-color: #216885 !important;
    }

.dxbl-btn-secondary {
    color: #216885 !important;
    border-color: #216885 !important;
}

    .dxbl-btn-secondary:hover {
        color: #fff !important;
        background-color: #164659 !important;
    }

    .dxbl-btn-secondary[disabled]:hover {
        color: #fff !important;
        background-color: #B0B0B0 !important;
        border-color: #216885 !important;
    }

    .dxbl-btn-secondary[disabled] {
        color: #fff !important;
        background-color: #B0B0B0 !important;
        border-color: #216885 !important;
    }

/* Button icon color - affects any devexpress component that implements "IconCssClass" property */
.oi {
    color: #216885 !important;
}

/***************************************************/
/* Classes to overide DevExpress TreeView Nodes    */
/***************************************************/

/* Selected TreeNode Text                          */
.nav-link.active .treeview-item-text-container {
    color: white !important;
}
/***************************************************/
/* Classes to overide DevExpress Active Tab Color  */
/***************************************************/
.dxbl-tabs-tmpl {
    padding: 8px 16px;
    text-align: center;
    border: 1px solid grey;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.dxbl-tabs-item.dxbl-active.dxbl-tabs-tmpl {
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    border-bottom: 1px solid white;
    border-top: 1px solid grey;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.dxbl-tabs-item {
    margin-right: 10px;
    border-color: grey !important;
}

    .dxbl-tabs-item.dxbl-active {
        color: rgba(33, 104, 133) !important;
        font-weight: 600 !important;
        border-color: grey grey white grey !important;
    }

.taboutline {
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    border-bottom: 1px solid grey;
    border-top: 1px solid white;
}

.dxbl-tabs {
    font-size: 16px;
    color: grey !important;
    border-bottom: 1px solid grey !important;
}

/*****************************************************/
/* Classes to overide DevExpress FormLayout Caption  */
/*****************************************************/

.dxbl-fl-cpt.dxbl-text {
    font-weight: bold;
}

/* End DevExpress 22.2 Changes **********************/

.fake-element {
    white-space: nowrap;
}

.ellipsis-anchor span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a, .btn-link {
    color: #0366d6;
}

.breadcrumb {
    background-color: transparent !important;
}

.w150 {
    width: 150px !important;
}

.w100 {
    width: 100px !important;
}

.w125 {
    width: 125px !important;
}

.rightalign {
    text-align: right;
    margin-right: 0px !important;
    width: 100%;
}

.content {
    padding-top: 1.1rem;
}

.dxbs-textbox.valid.modified,
.dxbs-textbox.invalid,
.dxbs-combobox.valid.modified,
.dxbs-combobox.invalid,
.dxbs-spin-edit.valid.modified,
.dxbs-spin-edit.invalid,
.dxbs-memo.valid.modified,
.dxbs-memo.invalid,
.dxbs-date-time-edit.valid.modified,
.dxbs-date-time-edit.invalid,
.dxbs-tagbox.valid.modified,
.dxbs-tagbox.invalid,
.dxbs-listbox.valid.modified,
.dxbs-listbox.invalid,
.dxbs-calendar.valid.modified,
.dxbs-calendar.invalid,
.dxbs-checkbox.valid.modified,
.dxbs-checkbox.invalid {
    outline: none;
}


.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;
    }

/* Pulled the following classes from an ordering page.  JBH 1/28/2022 */

.no-padding {
    padding: 0px 0px 0px 0px;
}

.small-padding {
    padding: 5px 5px 5px 5px;
}

.custom-drop-zone {
    padding: 4px !important;
    border-style: dashed !important;
    border-width: 2px !important;
    /*height: 129px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white
    /*        #f2f2f2;*/
}

    .custom-drop-zone.custom-drag-over {
        background-color: #727272;
    }

    .custom-drop-zone img {
        width: 42px;
        height: 42px;
    }

/*Formatting for navigation bar*/
h2.pagetitle {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Trebuchet MS';
    text-align: left;
    color: #000000;
    margin-left: 15px;
    align-content: center;
    align-items: center;
}

h2.usertitle {
    font-size: 24px;
    text-align: left;
    font-weight: normal;
    margin-top: 6px;
    color: #727272;
    margin-right: 15px;
    align-content: center;
    align-items: center;
}

hr.rounded-active {
    border-top: 4px solid #216885 !important;
    position: relative !important;
}

hr.rounded-inactive {
    border-top: 4px solid #727272 !important;
    position: relative !important;
}

h2.inactiveheader {
    font-size: 32px;
    font-family: Quicksand;
    text-align: left;
    color: #727272;
    opacity: 0.51;
}

h2.activeheader {
    font-size: 24px;
    /*    font-family: Quicksand;*/
    text-align: left;
    color: #727272;
}

div.circle {
    border-radius: 50em;
    height: 15px;
    width: 15px;
    justify-content: center;
}



div.circle {
    border-radius: 50em;
    height: 15px;
    width: 15px;
    justify-content: center;
}

/*Login button formatting*/
.nav-link.active {
    color: rgba(33, 104, 133) !important;
    font-weight: 600 !important;
    border-color: grey grey white;
}

.btn.loginbutton {
    height: 60px;
    width: 489px;
    font-family: 'Quicksand';
    font-size: 24px;
    text-transform: capitalize;
    border-radius: 20em;
    text-align: center;
    background-color: #216885;
    color: #ffffff;
    border: none;
}

    .btn.loginbutton:hover {
        background-color: #164659;
    }

    .btn.loginbutton:focus {
        box-shadow: none;
    }

    .btn.loginbutton:active {
        box-shadow: none !important;
        background-color: #164659 !important;
        transform: scale(0.98);
    }

/*Index page*/
.btn.landingbutton {
    height: 175px;
    width: 210px;
    font-family: Quicksand;
    font-size: 24px;
    border-radius: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-weight: normal;
    background-color: #216885;
    color: #ffffff;
    box-shadow: 8px 8px 5px #00000029;
}

    .btn.landingbutton:hover {
        background-color: #164659;
    }

    .btn.landingbutton:focus {
        box-shadow: none;
    }

    .btn.landingbutton:active {
        box-shadow: none !important;
        background-color: #164659 !important;
        transform: scale(0.98);
    }

/*File upload button */
.btn.fileupload {
    height: 25px;
    width: 130px;
    font-family: 'Quicksand';
    font-size: 13px;
    border-radius: 20em;
    text-align: center;
    background-color: #216885;
    color: #ffffff;
    border: none;
}

    .btn.fileupload:hover {
        background-color: #164659;
    }

    .btn.fileupload:focus {
        box-shadow: none;
    }

    .btn.fileupload:active {
        box-shadow: none !important;
        background-color: #164659 !important;
        transform: scale(0.98);
    }

.btn-secondary { /*Formats the dropdown button*/
    color: #216885;
    background-color: #F2F2F2;
    border: none;
}

/*Handles skeleton box*/
.placeholder-item {
    box-shadow: 10px 10px 10px 10px rgba(33, 33, 33, 0.15);
    border-radius: 4px;
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #f2f2f2;
}

.placeholder-plate {
    box-shadow: 2px 2px 2px 2px rgba(33, 33, 33, 0.15);
    border-radius: 4px;
    position: relative;
    aspect-ratio: 1.47;
    overflow: hidden;
    background-color: #f2f2f2;
}



/*Formatting for navigation bar*/
.btn.logoutbutton {
    color: #216885;
    font-size: 24px;
    background-color: #ffffff;
    width: 120px;
    height: 50px;
    border: none;
    border-radius: 15em;
    margin-right: 70px;
}

    .btn.logoutbutton:hover {
        background-color: #f2f2f2;
        color: #216885;
    }

    .btn.logoutbutton:active {
        box-shadow: none !important;
        background-color: #f2f2f2 !important;
        transform: scale(0.98);
        color: #216885 !important;
    }

.sizing {
    height: 36px;
}


/* These classes are no longer used with DevExpress 22.2.4*/

/*This is for making the tabs bold*/
/*.nav-link.active {
    color: rgba(33, 104, 133) !important;
    font-weight: 600 !important;
    border-color: grey grey white;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-color: grey grey white !important;
    color: #216885 !important;
}

.nav-tabs .nav-link {
    font-size: 16px;
    margin-right: 10px;
    border: 1px solid grey;
    color: grey !important;
}

.nav-tabs {
    border-bottom: 1px solid grey;
}*/

/*.taboutline {
    border: 1px solid grey;
}*/

.clearbutton {
    background-color: #ffffff;
    color: #216885;
    text-decoration: underline;
    font-size: 16px;
    font-family: 'Quicksand';
    width: 60px;
    height: 20px;
}

    .clearbutton:active {
        color: #164659;
        transform: scale(0.95) !important;
        box-shadow: none !important;
    }

    .clearbutton:disabled {
        color: rgba(33, 104, 133, 0.5);
    }

.plus-button {
    background-color: #216885 !important;
    color: #ffffff;
    box-shadow: none;
    border-radius: 50em;
    height: 30px;
    width: 30px;
    font-size: 20px;
    vertical-align: bottom;
}

    .plus-button:hover {
        background-color: #164659;
        color: #ffffff;
    }

    .plus-button:active {
        background-color: #164659 !important;
        color: #ffffff;
        transform: scale(0.95) !important;
        box-shadow: none !important;
    }

    .plus-button:focus {
        background-color: #164659;
        color: #ffffff;
        box-shadow: none;
    }

/*Defines the page layout*/
.largelayout {
    margin-top: 50px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 60px;
}

.smalllayout {
    margin-top: 50px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 60px;
}

.caption-left-margin {
    margin-left: 25px !important;
}

.dxbs-popup .modal-content .errormessage {
    border-color: #CD2F44;
    border-width: thick;
}

.dxbs-popup .modal-content infomessage {
    border-color: #216885;
    border-width: thick;
}

.infomessage {
    border-color: #216885;
    border-width: thick;
}

.formwidth {
/*    margin-left: 120px;
    margin-right: 120px;
    margin-top: 20px;
    margin-bottom: 20px;*/
    margin:auto;
}

/* 1200 is Large Screen */
@media screen and (max-width: 1199px) {
    .formwidth {
        /*        margin-left: 60px;
        margin-right: 60px;
        margin-top: 20px;
        margin-bottom: 20px;*/
        margin: auto;
    }
}

.standardwidth {
/*    margin-left: 60px;
    margin-right: 60px;
    margin-top: 20px;
    margin-bottom: 20px;*/
}

.standardreporting {
    margin-left: 60px;
    margin-right: 60px;
    margin-top: 20px;
}

.floating-update-button {
    position: fixed;
    z-index: 9999;
    right: 2rem;
    margin-right: 80px;
    bottom: 2rem;
    padding: 1rem 1.5rem;
    animation: fadein 2s ease-out;
}

/* For Refresh Button */
@keyframes fadein {
    from {
        right: -100%;
    }

    to {
        right: 2rem;
    }
}

.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 {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #216885;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

.addbatchwidth {
    width: 40%;
}

/* Client-side upload file button */
.input-file-btn {
    cursor: pointer;
}

    .input-file-btn input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.ch-480 {
    height: 480px;
}

.imitationcaption {
    font-weight: bold;
    color: #868181;
    font-size: 12px;
}

@keyframes slideDrawer {
    from {
        left: -100%;
    }

    to {
        left: 0;
    }
}

@keyframes scaleContent {
    from {
        left: 0;
        width: 100%;
    }

    to {
        left: 16.333333%;
        width: 83.6666666%;
    }
}

.drawer {
    transition-duration: .25s;
    left: -16.666667% !important;
    animation: slideDrawer .25s ease alternate-reverse;
}

.showDrawer {
    transition-duration: .25s;
    animation: slideDrawer .25s ease alternate;
    left: 0 !important;
}

.contentShowDrawer {
    transition-duration: .5s;
    animation: scaleContent .25s ease alternate;
    left: 16.666667%;
    /*    width: 84% !important*/
}

.contentHideDrawer {
    transition-duration: .5s;
    animation: scaleContent .25s ease alternate-reverse;
    left: 0 !important;
    /*    width: 100% !important;*/
}


.smallScreenDimming{
    display:none;
}

@media (max-width: 990px) {
    .contentShowDrawer {
        left: 0 !important;
        opacity: 1;
    }

    .smallScreenDimming {
        display:block !important;
        z-index:1;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: grey !important;
        opacity: .6 !important;
        transition-duration: .5s;
    }
}

@media(max-width:576px) {
    .page-title {
        display: none;
    }

    .btn.loginbutton {
        width: 75%;
        font-size: 2vw;
    }
}
/*@media only screen and (max-width: 600px) {
    body {
        background-color: lightblue;
    }
*/

.person-dropdown-grid {
    min-width: 700px !important;
}
