﻿.divider {
    color: rgba(66,66,66,1)
}
.divider > div:first-child,
.divider > div:last-child {
    flex: 1;
    height: 2px;
    background-color: rgba(66,66,66,1)
}
.spin-icon .mud-icon-root {
    animation: spin-animation 1s infinite
}

@keyframes spin-animation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.chip-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap    
}
.chip-auto-complete small {
    font-size:26px
}
.select-header {
    cursor:default;
    font-weight: bold;
}
.select-item {
    margin-left:10px
}
.autocomplete-danger .mud-input-control-input-container .mud-input input {
    color: red;
}