/* Minification failed. Returning unminified contents.
(237,27): run-time error CSS1039: Token not allowed after unary operator: '-neutral-200'
(261,28): run-time error CSS1039: Token not allowed after unary operator: '-neutral-200'
(279,28): run-time error CSS1039: Token not allowed after unary operator: '-neutral-100'
(280,33): run-time error CSS1039: Token not allowed after unary operator: '-neutral-300'
 */

html {
    position: relative; /* to support footer */
    min-height: 100%; /* to support footer */
}

body {
    color: darkslategray;
}

label {
    color: darkslategray;
}

.panel {
    padding: 15px;
}

.panel-default {
    box-shadow: 2px 2px 5px lightgrey;
}

.panel-heading {
    color: gray !important;
    font-size: large;
    background-color: white !important;
    border: 0;
}

.btn-primary:hover {
    background-color: white;
    color: #337ab7
}

.btn-success:hover {
    background-color: white;
    color: #5cb85c
}

.btn-warning:hover {
    background-color: white;
    color: #f0ad4e
}

.btn-danger:hover {
    background-color: white;
    color: #d9534f;
}

.figure {
    position: relative;
    max-width: 100%;
}

    .figure img.image-hover {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        object-fit: contain;
        opacity: 0;
        transition: opacity .2s;
    }

    .figure:hover img.image-hover {
        opacity: 1;
    }


.core-margin-b-none {
    margin-bottom: 0px;
}

.core-flex-center {
    display: flex;
    align-items: center;
    vertical-align: baseline;
}

.core-width-min-100p {
    min-width: 100%;
}

@media (max-width: 991px) {
    .core-form-group-label-fix div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        vertical-align: baseline;
    }

    .core-form-group-label-fix input[type="checkbox"] {
        display: inline-block;
    }
}

@media (max-width: 545px) {
    .core-form-group-label-fix div {
        display: block;
        font-size: 12px;
        text-align: center;
    }

    .core-form-group-label-fix input[type="checkbox"] {
        display: inline-block;
    }
}

/*Bootsrap Inputs Styles*/
.col-lg-3 {
    padding-bottom: 15px;
}

.col-md-4 {
    padding-bottom: 15px;
}

.col-sm-6 {
    padding-bottom: 15px;
}

.col-md-6 {
    padding-bottom: 10px;
}

.col-md-12 {
    padding-bottom: 10px;
}

/* So buttons in toolbars are shown with spacing when taking two lines */

.btn {
    margin-bottom: 10px;
}

/* DataTables Styles */

.dataTables_wrapper {
    padding: 5px;
}

.dataTables_wrapper th {
    border-bottom: none !important;
}

.table {
    border-color: #ccc !important;
}

.grid_view_table {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

    .grid_view_table th {
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        border-top: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .grid_view_table td {
        border: none !important;
    }

.dataTables_length select {
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    padding: 6px 12px;
    color: #555;
    font-weight: normal;
    outline: none;
}

    .dataTables_length select:focus {
        border-color: #66afe9;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    }

.dataTables_filter input {
    border-radius: 2px;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2);
    background-color: #fafafa;
    padding: 6px 12px;
    color: #555;
    font-weight: normal;
    outline: none;
    margin: 4px;
    margin-bottom: 10px;
    height: 40px;
}

    .dataTables_filter input:focus {
        border-color: #f87c1d;
    }

.qtip {
    max-width: none !important;
    min-width: 200px;
}

.avatar {
    height: 50px;
    width: 50px;
    border-radius: 10%;
    object-fit: cover;
}

.small-letter-avatar {
    height: 22px;
    width: 22px;
    line-height: 22px;
    font-size: large;
    color: white;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.main-body-content {
    height: 100%;
    flex-grow: 1;
}

.main-wrapper {
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background-color:var(--neutral-200);
}

#aiassistantbar {
    max-width: 0;
    top: 16px;
    transition: all 350ms;
    height: 100%;
    max-height: 100svh;
}

    #aiassistantbar.open {
        max-width: 496px;
        width: 100%;
    }

 .ai_chat {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ai_chat-messages {
    max-height: 100%;
    background-color: var(--neutral-200);
    flex-grow: 1;
    overflow-y: scroll;
    height: fit-content;
}

.ai_panel-body {
    padding: 0px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ai_panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 16px;
    background-color: var(--neutral-100);
    border-left: 1px solid var(--neutral-300);
    flex-grow: 1;
    max-width: 700px;
    width: 100%
}

.ai_page-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: calc(100svh - 200px);
}

.ai_input-chat-message::placeholder {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adm-footer {
    width: 100%;
    background-color: #f5f5f5;
    padding: 4rem 0;
}

@media (max-width: 759px) {
    #aiassistantbar.open {
        max-width: 0;
    }
}
