﻿body {
    padding-top: 70px;
    padding-bottom: 20px;
}

    body h1, body h2, body h3, body h4, body h5, body h6 {
        color: #29305b;
        font-family: 'Vollkorn', serif;
        font-weight: 600;
        margin: 0 0 10px;
        line-height: 1.25;
    }

    body main {
        margin-top: 10px;
    }

.container-fluid {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

body main section#hero {
    background: #daecec;
    color: #29305b;
    padding-top: 35px;
    padding-bottom: 25px;
    margin-bottom: 20px;
    text-align: center !important;
}

    body main section#hero h2::after {
        content: '';
        width: 75px;
        height: 3px;
        background: #80bcbc;
        display: block;
        margin: auto;
        margin-top: 10px;
    }

body main section#page {
    padding-left: 15px;
    padding-right: 15px;
}

body footer {
    padding-left: 15px;
    padding-right: 15px;
}

.disclaimer {
    color: #a6adbc;
    font-size: 0.9rem;
    line-height: 1.42;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.card-header-light-green {
    background: #daecec !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.card-body-no-padding {
    padding:0 !important;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */

.error-template {
    padding: 40px 15px;
    text-align: center;
}

.error-actions {
    margin-top: 15px;
    margin-bottom: 15px;
}

    .error-actions .btn {
        margin-right: 10px;
    }

body header {
    background: #29305b;
    border-top: 10px solid #f79584;
    color: #fff !important;
    padding: 15px 0 0;
}

.navbar-brand img {
    width: 250px;
}

.navbar-nav li a {
    color: #fff !important;
}



.navbar-toggler {
    color: #fff !important;
}

.dropdown-toggle::after {
    color: #80bcbc !important;
}

.jumbotron {
    background-color: #daecec !important;
    margin-bottom: 0px !important;
    text-align: left !important;
}

    .jumbotron h1 {
        color: #29305b !important;
    }

    .jumbotron .lead {
        font-size: 26px !important;
        font-weight: 400 !important;
    }

        .jumbotron .lead a {
            color: #29305b !important;
            text-decoration: underline !important;
        }

    .jumbotron .btn-primary {
        background: #55597c;
        border: none;
        outline: none;
        color: #fff !important;
        text-decoration: none !important;
        padding: 15px 50px;
        border-radius: 2em;
    }

table.dataTable.fixedHeader-floating,
table.dataTable.fixedHeader-locked {
    background-color: white;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}

.table a {
    color: #212529 !important;
    border-bottom: 1px solid #212529;
}

    .table a:hover {
        text-decoration: none !important;
        border-bottom: 1px solid #f79584;
    }

.navbar-nav li:hover > a {
    color: #80bcbc !important;
}

.dropdown-menu li a {
    color: #29305b !important;
}

.dropdown-menu li:hover a {
    color: #29305b !important;
    text-decoration: underline;
}

.validation-summary-errors ul {
    list-style: none;
}

.dt-buttons .btn-secondary {
    color: #fff;
}

    .dt-buttons .btn-secondary::after {
        color: #fff !important;
    }

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}

    .pager li {
        display: inline;
    }

        .pager li > a,
        .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 15px;
        }

            .pager li > a:hover,
            .pager li > a:focus {
                text-decoration: none;
                background-color: #eee;
            }

    .pager .next > a,
    .pager .next > span {
        float: right;
    }

    .pager .previous > a,
    .pager .previous > span {
        float: left;
    }

    .pager .disabled > a,
    .pager .disabled > a:hover,
    .pager .disabled > a:focus,
    .pager .disabled > span {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
    }


    .pager:before,
    .pager:after {
        display: table;
        content: " ";
    }

    .pager:after {
        clear: both;
    }

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #29305b;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden
}

    .video-wrapper embed,
    .video-wrapper iframe,
    .video-wrapper object {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }

body table thead tr th {
    vertical-align: baseline !important;
    /*text-align: center;*/
}

.yadcf-filter-wrapper {
    display: block !important;
}

.yadcf-filter-wrapper-inner {
    border: 0px !important;
}

ul.nav li.dropdown:hover ul.dropdown-menu {
    display: block;
}

.dropdown-menu {
    margin: 0 !important;
}


select[readonly].select2-hidden-accessible + .select2-container {
    pointer-events: none;
    touch-action: none;
}

    select[readonly].select2-hidden-accessible + .select2-container .select2-selection {
        background: #eee;
        box-shadow: none;
    }

    select[readonly].select2-hidden-accessible + .select2-container .select2-selection__arrow, select[readonly].select2-hidden-accessible + .select2-container .select2-selection__clear {
        display: none;
    }

select[readonly] {
    pointer-events: none;
}

div[readonly] {
    opacity: .5;
}

#siteTtrackerStartupTableId td {
    white-space: nowrap !important;
}

table.dataTable thead tr > .dtfc-fixed-left {
    background-color: white !important;
    z-index: 1000;
}

table.dataTable tbody tr > .dtfc-fixed-left {
    background-color: white !important
}

table.dataTable tbody tr.odd > .dtfc-fixed-left {
    background-color: #f5f4f3 !important
}

table.dataTable thead tr > .dtfc-fixed-right {
    background-color: white !important;
    z-index: 1000;
}

table.dataTable tbody tr > .dtfc-fixed-right {
    background-color: white !important
}

table.dataTable tbody tr.odd > .dtfc-fixed-right {
    background-color: #f5f4f3 !important
}

.nowrap {
    white-space: nowrap !important;
}

.dtMin {
    min-width: 55px !important;
}

.dtMin2 {
    min-width: 80px !important;
}

.trunc,
#reportTable th:nth-child(2),
#reportTable td:nth-child(2) {
    max-width: 350px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important; /* Add an ellipsis to indicate that the text has been truncated */
}

.auditInfo {
    color: #499E9C;
    cursor: pointer;
}

#auditChangesModalId .modal-dialog {
    width: auto;
    max-width: 80%;
    min-width: 1024px;
}

.dtfh-floatingparenthead {
    overflow: visible !important;
}

.dataTables_scrollHead {
    overflow: visible !important;
}


.dataTables_scrollBody {
    overflow: visible !important;
}

.big-main {
    display: inline-block;
}

.big-hero {
    width: 99vw;
    position: sticky;
    left: 0;
}

.big-footer {
    width: 99vw;
    position: sticky;
    left: 0;
}

#siteTtrackerStartupTableId_wrapper > div:first-child {
    position: sticky;
    left: 0;
    width: 98vw;
}


#siteTtrackerStartupTableId_wrapper > div:last-child {
    position: sticky;
    left: 0;
    width: 98vw;
}

.dashboardcard {
    min-height: 150px;
}
.label-container {
    white-space: nowrap;
}

.even-row {
    background-color: #f5f5f5;
    padding-bottom: 6px;
    padding-top: 6px;
}

.odd-row {
    background-color: #ffffff;
    padding-bottom: 6px;
    padding-top: 6px;
}

.row-no-margin {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.text-wrap {
    white-space: pre-wrap !important; 
    overflow:  visible !important; 
    word-wrap: break-word !important; 
    max-width: 200px; 
}

table.dataTable#reportTable {
    width: auto !important;
}

#reportTable th {
    max-width: 550px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#reportTable td {
    white-space: normal !important;
    white-space: pre-wrap;
    word-break: break-word;
}

#reportTable th:nth-child(1),
#reportTable td:nth-child(1) {
    width: 100px !important;
    max-width: 100px !important;
}

#filterClauses .field-validation-error,
.operator-error {
    color: red;
}

#filterClauses .filter-clause {
    position: relative;
}

#filterClauses .field-validation-error {
    position: absolute;
    width: 100%;
    display: block;
}

#viewNotesModal .modal-dialog {
    max-width: 80vw;
    width: 80vw;
}
#viewNotesModal .modal-content {
    width: 100%;
}

#viewNotesModal .modal-body {
    width: 100%;
}

#viewNotesModal table.dataTable {
    width: 100% !important;
}

#viewNotesModal {
    z-index: 1050 !important;
}

.modal-backdrop {
    z-index: 1040 !important;
}

.modal-backdrop + .modal-backdrop {
        z-index: 1050 !important;
}

#addNewPatientNoteModal {
    z-index: 1060 !important;
}

#changePiStatusModal {
    z-index: 1060 !important;
}

#viewFileNotesModal .modal-dialog {
    max-width: 80vw;
    width: 80vw;
}

#viewFileNotesModal .modal-content {
    overflow-x: auto;
}

#dmRejectModal {
    z-index: 1061 !important;
}

#notesModal {
    z-index: 1062 !important;
}