/* _content/Chassis.UI.Common.Blazor/FormComponents/ChassisButtonSpinner.razor.rz.scp.css */
.chassisButtonSpinner.animate[b-rytyz7ls6d] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.chassisButtonSpinner.animate button[b-rytyz7ls6d], 
.chassisButtonSpinner.animate .btn[b-rytyz7ls6d] {
    transition: .25s;
    color: transparent !important;
}
/* _content/Chassis.UI.Common.Blazor/FormComponents/ChassisComboBox.razor.rz.scp.css */
.chassisComboBox-dropdown-menu[b-ljhmbkayrc] {
    width: 100%;
    max-height:200px; 
    overflow:auto;
}
.chassisComboBox input[b-ljhmbkayrc]{
    font-weight: 600; 
}

.chassisComboBox-dropdown-menu.dropdown-menu.show[b-ljhmbkayrc] {
    display: grid!important;
    width: 100%;
    overflow: auto;
    max-height: 200px;
}

.chassisComboBox i[b-ljhmbkayrc] {
    position: absolute;
    right: 14px;
    top: 19px;
    color: black;
    font-weight: 400;
    font-size: 13px;
}

.chassisComboBox-dropdown-item[b-ljhmbkayrc] {
    padding: 0 .75em;
    color: var(--bs-gray-600);
}

.chassisComboBox-dropdown-item.highlighted[b-ljhmbkayrc] {
    background-color: #1967d2;
    color: white;
}
/* _content/Chassis.UI.Common.Blazor/MultiSelect.razor.rz.scp.css */
.multiselect__wrapper[b-w8f4f0t1fw]{
    font-size: 16px;
    padding-top:2px;
    padding-bottom:2px;
    position: relative;
}

.multiSelect__disabled[b-w8f4f0t1fw] {
    background: var(--bs-gray-100);
    cursor: not-allowed;
    pointer-events: none;
}

.multiSelect__disabled input[b-w8f4f0t1fw]{
    background: var(--bs-gray-100);
    cursor: not-allowed;
    pointer-events: none;
}

.multiselect__wrapper input.multiselect__text-input[b-w8f4f0t1fw]{
    flex-basis: 0;
    min-width: min-content;
    border: none;
    height: 38px;
}

.dropdown-multiselect.hidden[b-w8f4f0t1fw] {
    height: 0px;
    animation: slideIn-b-w8f4f0t1fw 0.25s ease-in-out;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0);
}

.dropdown-multiselect[b-w8f4f0t1fw] {
    display: flex;
    position: absolute;
    background: white;
    z-index: 2;
    width: 100%;
    animation: slideOut-b-w8f4f0t1fw 0.25s ease-in-out;
    height: 200px;
    flex-direction: column;
    align-items: start;
    overflow-y: auto;
    /*    drop shadow*/
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.5);
    color:black;
}

.multiselect__wrapper--bg-color[b-w8f4f0t1fw]{
    background-color: white;
    color:black;
}

.hover-bg-gray:hover[b-w8f4f0t1fw] {
    background: lightgray;
}

.selected-border[b-w8f4f0t1fw] {
    border: 1px solid gray;
}

@media (min-width: 992px) {
    .multiselect__wrapper[b-w8f4f0t1fw]{
        font-size: 14px;
    }
}

@keyframes slideOut-b-w8f4f0t1fw {
     from {
         height: 0px;
         box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.5);
     }
     to {
         height: 200px;
         box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.5);
     }
 }

@keyframes slideIn-b-w8f4f0t1fw {
     from {
         height: 200px;
         box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.5);
     }
     to {
         height: 0px;
         box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.5);
     }
 }
