:root {
    --highlightblue: #4B9DEA;
    --default-button: #ffffff;
    --default-button-border: #cccccc;
    --default-button-color: #333333;
    --badge-background: #333a56;
    --badge-color: white;
    --tab-color: #ff7600;
    --tab-hover-color: rgb(243,178,122);
    /*--search-color: rgb(13,110,253);*/
    --search-color: rgb(51,122,183);
    --search-hover-color: rgb(111,184,247);
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.mainbutton {
    width: 100%;
}

.card-header {
    font-size: 1.1rem;
    user-select: none;
}

.accordion-header button {
    text-transform: uppercase;
    font-size: 1.3rem;
}

.auto-save {
    margin-left: 12px;
    text-transform: none;
    font-size: .8rem;
}

.main-body {
    background-color: #eeeeee;
}

.font-weight-bold {
    font-weight: bold;
}

/*.accordion-button.collapsed {
    color: #0c63e4;
    color: var(--bs-body-color);
    background-color: white;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button:not(.collapsed) {
    color: var(--bs-body-color);
    background-color: #e7f1ff;
    background-color: #f3f3f3;
    background-color: #f2f3f4;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-body {
    background-color: #e7f1ff;
    background-color: #f3f3f3;
    background-color: #f2f3f4;
}

    .accordion-body * {
        background-color: #e7f1ff;
        background-color: #f3f3f3;
        background-color: #f2f3f4;
    }
*/

.button-icon {
    margin-right: 4px;
}

/*.button-text {
    font-size: 8px;
}*/

.inactive-row {
    background-color: lightgrey;
}

span.validationError {
    color: red;
}

div.validationError {
    color: red;
}

.validationErrorBorder {
    border: 1px dotted red;
}

label.validationError {
    /*display: block;*/
    margin-left: 10px;
    color: red;
}

input.validationError {
    border: 1px dotted red;
}

textarea.validationError {
    border: 1px dotted red;
}

select.validationError {
    border: 1px dotted red;
}

.errorTxt.validationError {
    border: 1px dotted red;
    min-height: 20px;
}

/* dot spinner */
.hollow-dots-spinner, .hollow-dots-spinner * {
    box-sizing: border-box;
}

.hollow-dots-spinner {
    height: 15px;
    width: calc(30px * 3);
}

    .hollow-dots-spinner .dot {
        width: 15px;
        height: 15px;
        margin: 0 calc(15px / 2);
        border: calc(15px / 5) solid var(--highlightblue);
        border-radius: 50%;
        float: left;
        transform: scale(0);
        animation: hollow-dots-spinner-animation 1000ms ease infinite 0ms;
    }

        .hollow-dots-spinner .dot:nth-child(1) {
            animation-delay: calc(300ms * 1);
        }

        .hollow-dots-spinner .dot:nth-child(2) {
            animation-delay: calc(300ms * 2);
        }

        .hollow-dots-spinner .dot:nth-child(3) {
            animation-delay: calc(300ms * 3);
        }

@keyframes hollow-dots-spinner-animation {
    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* end dot spinner*/

/* spring spinner */
.spring-spinner, .spring-spinner * {
    box-sizing: border-box;
}

.spring-spinner {
    height: 20px;
    width: 20px;
}

    .spring-spinner .spring-spinner-part {
        overflow: hidden;
        height: calc(20px / 2);
        width: 20px;
    }

        .spring-spinner .spring-spinner-part.bottom {
            transform: rotate(180deg) scale(-1, 1);
        }

    .spring-spinner .spring-spinner-rotator {
        width: 20px;
        height: 20px;
        border: calc(20px / 7) solid transparent;
        border-right-color: var(--highlightblue);
        border-top-color: var(--highlightblue);
        border-radius: 50%;
        box-sizing: border-box;
        animation: spring-spinner-animation 3s ease-in-out infinite;
        transform: rotate(-200deg);
    }

@keyframes spring-spinner-animation {
    0% {
        border-width: calc(20px / 7);
    }

    25% {
        border-width: calc(20px / 23.33);
    }

    50% {
        transform: rotate(115deg);
        border-width: calc(20px / 7);
    }

    75% {
        border-width: calc(20px / 23.33);
    }

    100% {
        border-width: calc(20px / 7);
    }
}
/* end spring spinner */

.category {
    font-weight: bold;
    font-size: 1.2rem;
}

table.sortable th {
    font-weight: bold;
    position: relative;
}

    table.sortable th button {
        border: none;
        display: inline;
        width: 100%;
        text-align: left;
        outline: none;
        cursor: pointer;
        background: transparent;
        font-weight: bold;
    }

        table .sortable th button span {
            position: absolute;
            right: 5px;
        }

    table.sortable th[aria-sort="desc"] span::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f0d7";
        color: currentcolor;
        font-size: 100%;
        top: 0;
    }

    table.sortable th[aria-sort="asc"] span::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f0d8";
        color: currentcolor;
        font-size: 100%;
        top: 0;
    }

    table.sortable th:not([aria-sort]) button:focus span::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f0d7";
        color: currentcolor;
        font-size: 100%;
        top: 0;
    }

.yellow {
    background-color: yellow;
}

.step-header {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0px;
}

.yes-no {
    font-size: 1.4rem;
    vertical-align: middle;
    text-align: center;
    border-top: 2px solid black;
    font-weight: bold;
}

.yes-no-arrow {
    font-size: 2.2rem;
    font-weight: bold;
}

.yes-no-result {
    vertical-align: middle;
    border-top: 2px solid black;
    border-right: 2px solid black;
}

.instructions {
    border: 2px solid black;
}

.decision-tree-header {
    font-size: 1.1rem;
    font-weight: bold;
}

.finishing-cell {
    border-right: 2px solid black;
}

table.signature-table {
    border-collapse: separate;
    border-spacing: 7px;
}

    table.signature-table tbody td:nth-child(1) {
        text-align: right;
        padding-bottom: 0px;
        padding-right: 2px;
    }

    table.signature-table tbody td:nth-child(2) {
        border-bottom: 1px solid black;
    }

table.classificationHistory {
    margin-bottom: 0px;
}

#selectUserTable.table-hover tbody tr:hover td, selectUserTable.table-hover tbody tr:hover th {
    background-color: #91c9f7;
}

#selectUserTable {
    cursor: pointer;
}

.nav-tabs .nav-item {
    margin-right: 5px;
    padding: 0px;
}

.nav-tabs .nav-link {
    border-top: 1px solid var(--tab-color);
    border-right: 1px solid var(--tab-color);
    border-left: 1px solid var(--tab-color);
    color: var(--tab-color);
}

#reportTabs .nav-link {
    border-top: 1px solid var(--search-color);
    border-right: 1px solid var(--search-color);
    border-left: 1px solid var(--search-color);
    color: var(--search-color);
}

.nav-tabs > li > a {
    text-decoration: underline;
    padding: 4px;
}

    .nav-tabs > li > a:hover {
        border-top: 1px solid var(--tab-hover-color);
        border-right: 1px solid var(--tab-hover-color);
        border-left: 1px solid var(--tab-hover-color);
        background-color: var(--tab-hover-color);
        color: white;
    }

    .nav-tabs > li > a.active, .nav-tabs > li > a.active:hover, .nav-tabs > li > a.active:focus {
        border-top: 1px solid var(--tab-color);
        border-right: 1px solid var(--tab-color);
        border-left: 1px solid var(--tab-color);
        background-color: var(--tab-color);
        color: white;
    }

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: white;
    background-color: var(--tab-color);
    border-color: #dee2e6 #dee2e6 #fff;
}

#reportTabs > li > a:hover {
    border-top: 1px solid var(--search-hover-color);
    border-right: 1px solid var(--search-hover-color);
    border-left: 1px solid var(--search-hover-color);
    background-color: var(--search-hover-color);
    color: white;
}

#reportTabs > li > a.active, #reportTabs > li > a.active:hover, #reportTabs > li > a.active:focus {
    border-top: 1px solid var(--search-color);
    border-right: 1px solid var(--search-color);
    border-left: 1px solid var(--search-color);
    background-color: var(--search-color);
    color: white;
}

#reportTabs .nav-item.show .nav-link, #reportTabs .nav-link.active {
    color: white;
    background-color: var(--search-color);
    border-color: #dee2e6 #dee2e6 #fff;
}

.search_nav {
    position: absolute;
    top: 65px;
    right: 356px;
}

.float_right {
    float: right;
}

#searchIcon {
    margin-top: 9px;
}

.custom-file-upload {
    border: 1px solid var(--default-button-border);
    background-color: rgb(0,115,207);
    background-color: var(--default-button);
    color: var(--default-button-color);
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}

    .custom-file-upload.disableUpload {
        background-color: #eeeeee;
        pointer-events: none;
        cursor: not-allowed;
        color: var(--form-control-color);
    }

.active-tab-badge {
    background-color: var(--badge-background);
    color: var(--badge-color);
    margin-left: 5px;
}

.edit-badge {
    background-color: var(--badge-background);
    color: var(--badge-color);
    margin-left: 5px;
    font-size: 20px;
    vertical-align: middle;
}

.remove-row {
    font-size: 14px;
    margin-left: 10px;
    color: #4C4E52;
}

@media print {
    /*@page {
        margin: 2cm;
        size: letter;
    }*/

    /* .container {
        max-width: 100%;
    }
*/
    .hideMeInPrint {
        display: none;
    }

    /*.table tbody > tr > td {
        padding: 4px;
    }*/

    .table td {
        -webkit-print-color-adjust: exact;
    }

    col-md-1 {
        width: 8%;
        float: left;
    }

    col-md-2 {
        width: 17%;
        float: left;
    }

    col-md-3 {
        width: 25%;
        float: left;
    }

    col-md-4 {
        width: 33%;
        float: left;
    }

    col-md-5 {
        width: 42%;
        float: left;
    }

    col-md-6 {
        width: 50%;
        float: left;
    }

    col-md-7 {
        width: 58%;
        float: left;
    }

    .col-md-8 {
        width: 66%;
        float: left;
    }

    .col-md-9 {
        width: 75%;
        float: left;
    }

    .col-md-10 {
        width: 83%;
        float: left;
    }

    .col-md-11 {
        width: 92%;
        float: left;
    }

    .col-md-12 {
        width: 100%;
        float: left;
    }

    table tbody tr td.col-md-1 {
        width: 8%;
    }

    table tbody tr td.col-md-5 {
        width: 42%;
    }
}

.pb-14 {
    padding-bottom: 14px;
}

.printHeader {
    text-transform: uppercase;
}

.days-input {
    background-color: lightyellow;
    width: 100px;
}

.back-link {
    text-decoration: underline;
    color: #2c3033;
    font-size: .875rem;
}

.row-disabled {
    background-color: rgba(236, 240, 241, 0.5);
    pointer-events: none;
}

pre {
    font-family: inherit;
    color: #212529;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #ced4da;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    min-height: 37px;
}

.audit-folder {
    color: orangered;
    font-size: 30px;
    margin-left: 10px;
}

.sticky-top-button-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar-custom li {
    margin-right: 10px;
}

nav.navbar-custom {
    border: 1px solid #CCCCCC;
}

.render-body {
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-top: none;
    padding: 8px 8px 8px 8px;
}

#header {
    /*padding: 8px 8px 0px 8px;*/
    font-size: 1.6rem;
    margin-bottom: 0px;
}

.summary-text {
    font-size: 1rem;
    padding: 0px;
}

.dead-link {
    /*text-decoration: underline;*/
    color: #0d6efd;
}

.wrap-line-break {
    white-space: pre-wrap;
}

.desc-box {
    border: 1px solid #ced4da;
    padding: .375rem .75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.errorMsg {
    color: red;
}

.center {
    text-align: center;
}

.alert {
    margin-bottom: 0px;
}

.section-header {
    color: rgb(85,85,85);
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid grey;
}

.section-instructions {
    /*color: rgb(85,85,85);*/
    font-size: 1rem;
    /*border: 1px solid grey;*/
    border-radius: 0.25rem;
    margin-top: 1rem;
}

.is-disabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
    pointer-events: none;
}