/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,23): run-time error CSS1039: Token not allowed after unary operator: '-row-details-height'
(49,28): run-time error CSS1039: Token not allowed after unary operator: '-formbackgroundcolor'
(75,28): run-time error CSS1039: Token not allowed after unary operator: '-formbackgroundcolor'
(76,17): run-time error CSS1039: Token not allowed after unary operator: '-cardtextcolor'
(179,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(180,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(181,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(182,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(183,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(184,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(185,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
:root {
    --formbackgroundcolor: white;
    --row-details-height: 1.5rem;
}

.col-height {
    padding-top: var(--row-details-height);
}

body {
    padding-top: 0px;
    padding-bottom: 20px;
    background-color: #0f4c780d;
}

.btn {
    width: 150px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    background-color: #fbfbfb;
    min-width: 80rem;
}


.table-responsive-xl{
    overflow-x: auto;
}

.container-fluid {
    width: 100%;
    white-space: normal;
}



.container-bordered{
    border: 5px solid black;
}

.btn-nav-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 72px;
    background-color: var(--formbackgroundcolor);
    z-index: 1;
}

.container-btn-nav{
    padding-top: 10px;
    padding-bottom: 10px;
}


/* 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 */
input,
select,
textarea {
    max-width: 280px;
}

/*TextAreas*/
textarea {
    background-color: var(--formbackgroundcolor);
    color: var(--cardtextcolor);
    /*calculate a text area using: font height * line height * number of desired lines*/
    height: calc(1em * 1.6 * 5);
}

.footer {
    color: white;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.control-label {
    font-weight: bold;
}

.text-tab-color {
    color: white;
}

    .text-tab-color:hover {
        color: white;
    }

.textcolor {
    color: black;
    font-size: 20px;
}

    .textcolor:hover {
        color: dimgray;
    }

.navbar-brand {
    padding-left: 10px;
}

.navbar,
.navbar-collapse {
    justify-content: center;
}


fa-solid,
fa-filter {
    color: #ffffff !important;
    background-color: #717171 !important;
    border-color: #ffffff !important;
    border-width: 1px !important;
}



/*ComboBox*/



    .dropdown-toggle[role=combobox]:focus {
    outline: none !important;
    text-align: left !important;
}

a[role=option] {
    text-align: left !important;
}


.icononly {
    width: 50px;
    max-width: 50px;
}


button[role=combobox] {
    background-color: #fff;
    border: 1px solid #ced4da;
}
    button[role=combobox]:focus {
        outline: none !important;
        text-align: left !important;
        color: #212529;
        background-color: #fff;
        border-color: #86b7fe;
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
    }





.dropdown-header {
    text-align: center;
    font-size: 20px;
    color: black;
}





.thead-dark {
    --bs-table-bg: #0F4C78;
    --bs-table-striped-bg: #0F4C78;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #0F4C78;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #0F4C78;
    --bs-table-hover-color: #fff;
    color: #fff;
    border-color: #0F4C78;
}

tbody{
    text-align: left !important;
}

.body-content {
    margin-top: 30px;
    background-color: white;
    max-width: 90%;
}

.navbar-toggler {
    border: 2px solid black;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.nav-item,
.dropdown-item {
    text-align: center;
    color:gray;
}

    .dropdown-item:hover{
        background-color: dimgray;
        color: black;
    }

/*Styling for all page seperators*/
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #000000;
    font-weight: bold;
    font-size: 20px;
}

    .separator::before, .separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #b2b2b2;
    }

    .separator::before {
        margin-right: .25em;
    }

    .separator::after {
        margin-left: .25em;
    }

/*Styling for all page seperators*/
.separatorleft {
    display: flex;
    align-items: flex-start;
    text-align: left;
    color: #000000;
    font-weight: bold;
    font-size: 20px;
}

    .separatorleft::before, .separatorleft::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #b2b2b2;
    }

    .separatorleft::before {
        margin-right: .25em;
    }

    .separatorleft::after {
        margin-left: .25em;
    }


/*Center Element*/
.center {
    display: flex;
    align-items: center;
    text-align: center;
    color: #000000;
    font-weight: normal;
}

    .center::before, .center::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #b2b2b200;
    }

    .center::before {
        margin-right: .25em;
    }

    .center::after {
        margin-left: .25em;
    }

/*Left Element*/
.left {
    display: flex;
    align-items: start;
    text-align: start;
    color: #000000;
    font-weight: normal;
}

/*Set Element Width*/
.width-sm {
    width: 120px;
    max-width: 120px;
}

.standardwidth {
    width: 282px;
    max-width: 282px;
}

.width-lg {
    width: 350px !important;
    max-width: 350px !important;
}

.width-xl {
    width: 500px !important;
    max-width: 500px !important;
}

/*Checkboxes*/
input[type='checkbox'] {
    width: 280px;
    height: 30px;
}

/*Button Groups*/
.btn-group {
    white-space: normal;
}
