/* Minification failed. Returning unminified contents.
(82,28): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-color'
(83,18): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-bg'
(119,21): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-color'
(126,36): run-time error CSS1039: Token not allowed after unary operator: '-bs-gray-100'
 */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* 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;
}

    /* Chrome, Safari, Edge, Opera */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    input[type=number] {
        -moz-appearance: textfield;
    }

.input-group-in-column {
    position: relative;
    display: flex;
    align-items: stretch;
}

/*Start of my stuff*/
a.disabled {
    pointer-events: none;
    cursor: default;
}

.td-with-icon{
    width:5%;
    vertical-align:middle;
}

.imageBlock {
    display: inline-block;
}

.thumb {
    width: 159px;
    height: 159px;
}

.thumb-sm {
    width: 80px;
    height: 80px;
}
.deleteIcon {
    width: 30px;
    height: 30px;
}

.deleteDiv {
    position: relative;
    top: -160px;
    left: 130px;
    width: 30px;
    height: 30px;
}

.active-multicolumn-item {
    background-color: var(--bs-body-color);
    color : var(--bs-body-bg) !important;
}

.dropdown-menu {
    overflow: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 150px);
}


/*Start of Multicolumn drop down*/
.dropdown-menu {
    min-width: 200px;
}

    .dropdown-menu.columns-2 {
        min-width: 400px;
    }

    .dropdown-menu.columns-3 {
        min-width: 600px;
    }

    .dropdown-menu li a {
        padding: 5px 15px;
        font-weight: 300;
    }

.multi-column-dropdown {
    list-style: none;
}

    .multi-column-dropdown li a {
        display: block;
        clear: both;
        line-height: 1.428571429;
        color: var(--bs-body-color);
        white-space: normal;
    }

        .multi-column-dropdown li a:hover {
            text-decoration: none;
            color: #262626;
            background-color: var(--bs-gray-100);
        }

@media (max-width: 767px) {
    .dropdown-menu.multi-column {
        min-width: 240px !important;
        overflow-x: hidden;
    }
}

.navbar-profile-image{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 15px;
}

/*Add red asterisk before label on required input fields*/
.form-floating > input[data-val-required] + label::after{
    content: " *" !important;
    color: red !important; /* Change to your desired color */
}
/*Add red asterisk before label on required select fields*/
.form-floating > select[data-val-required] + label::after {
    content: " *" !important;
    color: red !important; /* Change to your desired color */
}

