/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */


@media print {
    .no-print, .no-print * {
        display: none !important;
    }

    .pagebreak-before, .pagebreak-before * {
        page-break-before: always;
    }
}

.btnActionSlim {
    font-size: .875rem;
    padding-top: .025rem;
    padding-bottom: .025rem;
}


/*TABBED OVERRIDES*/
#divTabbed .nav-tabs {
    border-bottom: 1px solid #c0c0c0 !important;
}

#divTabbed .nav-tabs .nav-link {
    color: #258c9b !important;
    margin-left: 3px;
}

#divTabbed .nav-tabs .nav-link:hover {
    color: #fff !important;
}

#divTabbed .nav-link {
    border-top: 1px solid #c0c0c0 !important;
    border-right: 1px solid #c0c0c0 !important;
    border-left: 1px solid #c0c0c0 !important;
}

#divTabbed .nav-link.active {
    color: #c6d5de !important;
    background-color: #343a40;
    border-top: 1px solid #c0c0c0 !important;
    border-right: 1px solid #c0c0c0 !important;
    border-left: 1px solid #c0c0c0 !important;
    border-bottom: 1px solid #000 !important;
}

/*FORM RELATED ELEMENTS*/

/*CUSTOM CHECKBOXES*/
/*Note: Entire reason for using this class and not bootstrap custom checkbox is when form is posted with bootstrap custom checkboxes, no values are selected in check box list.*/
/* The container */
.chkContainer {
    /* display: block; */
    /* display: inline-block; */
    position: relative;
    padding-left: 2rem;
    margin-right: 1.5rem;
    margin-bottom: 1.25rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.chkContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.575rem;
    width: 1.6rem;
    background-color: #eee;
    border: 1px solid #ced4da;
    border-radius: .25em;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Create a custom checkbox */
.checkmarkDisabled {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.575rem;
    width: 1.6rem;
    background-color: #f1f1f1;
    border: 1px solid #ced4da /*#ced4da*/;
    border-radius: .25em;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor:not-allowed;
}


/* On mouse-over, add a grey background color */
.chkContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.chkContainer input:checked ~ .checkmark {
    /*background-color: #007bff;*/
    background-color: #343a40;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkmarkDisabled:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.chkContainer input:checked ~ .checkmark:after {
    display: block;
}

.chkContainer input:checked ~ .checkmarkDisabled:after {
    display: block;
}

/* Style the checkmark/indicator */
.chkContainer .checkmark:after {
    left: 9px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Style the checkmark/indicator */
.chkContainer .checkmarkDisabled:after {
    left: 9px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid #a0a0a0;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*END CUSTOM CHECKBOXES*/



/*VALIDATION SUMMARY*/
#divValidationSummary ul {
    list-style-image: url("/images/icon_red_Cancel-16.png");
    vertical-align: middle;
    line-height: 1.5rem;
}



/*REQUIRED INPUT LABEL ASTERISK*/
.requiredInput:after {
    content: " *";
    display: inline-block;
    font-weight: bold;
    color: #c00;
    margin-left: 0.25rem;
}
/*END REQUIRED INPUT LABEL ASTERISK*/




/*TABLE GRID LIST*/
/*NOTE: Inlcuded at site level css for small grid listings used within various views for depts, grids, facility, etc.*/
#tblGridList {
    border-collapse: collapse;
}


#tblGridList td {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-right: .25rem;
}
/*END TABLE GRID LIST*/



/*EDIT HISTORY TABLE*/
#tblEditHistory {
    border-spacing: 0;
    width:100%; 
    font-size:.8rem;
}

#tblEditHistory .td {

}



/*Wrap text inside PRE tag for multiline comments*/
pre {
    overflow-x: auto;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

code {
    overflow-x: auto;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    font-size: 1rem;
    font-family: Courier New, Courier, monospace, sans-serif;
    color:limegreen;
}



/*GLOWING SHADOW*/
@-webkit-keyframes glowing {
    0% {
        -webkit-box-shadow: 0 0 0 0rem #494a54;
    }

    40% {
        -webkit-box-shadow: 0 0 .175rem .125rem #494a54;
    }

    60% {
        -webkit-box-shadow: 0 0 .175rem .125rem #494a54;
    }

    100% {
        -webkit-box-shadow: 0 0 0 0rem #494a54;
    }
}

@-moz-keyframes glowing {
    0% {
        -moz-box-shadow: 0 0 0 0rem #494a54;
    }

    40% {
        -moz-box-shadow: 0 0 .175rem .125rem #494a54;
    }

    60% {
        -moz-box-shadow: 0 0 .175rem .125rem #494a54;
    }

    100% {
        -moz-box-shadow: 0 0 0 0rem #494a54;
    }
}

@-o-keyframes glowing {
    0% {
        box-shadow: 0 0 0 0rem #494a54;
    }

    40% {
        box-shadow: 0 0 .175rem .125rem #494a54;
    }

    60% {
        box-shadow: 0 0 .175rem .125rem #494a54;
    }

    100% {
        box-shadow: 0 0 0 0rem #494a54;
    }
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 0 0rem #494a54;
    }

    40% {
        box-shadow: 0 0 .175rem .125rem #494a54;
    }

    60% {
        box-shadow: 0 0 .175rem .125rem #494a54;
    }

    100% {
        box-shadow: 0 0 0 0rem #494a54;
    }
}

.button-glow {
    -webkit-animation: glowing 1000ms infinite;
    -moz-animation: glowing 1000ms infinite;
    -o-animation: glowing 1000ms infinite;
    animation: glowing 1000ms infinite;
}

.input-glow {
    -webkit-animation: glowing 1000ms infinite;
    -moz-animation: glowing 1000ms infinite;
    -o-animation: glowing 1000ms infinite;
    animation: glowing 1000ms infinite;
}
/*END GLOWING SHADOW*/






/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
/* html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
} */

html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
   /*margin-bottom: 60px;*/
}


/*label {
    margin-bottom: 0;
    font-size:.875rem;
}*/

.printFooter {
    display:none;
}

@media print {
    .printFooter {
        display:block;
        position: fixed;
        bottom: 0;
        width: 100%;
        text-align: right;
        padding-top:1rem;
        padding-bottom:1rem;
        font-size:.5rem;
    }
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    color: #c6d5de;
}

#footerContainer {
    border-top: 1px solid #258c9b;
}

#footerTopDivider {
    background-color: #c6d5de;
    height: .325rem;
}

#footerCopyrightHostingContainer {
    text-align: center;
    color: #c6d5de;
}

#footerCopyrightHostingContainer p {
    line-height:1rem;
}


.footerXSmall {
    font-size: .75rem;
}

