/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

.table > thead > tr > th {
    text-transform: uppercase;
}

.table-no-select > tbody > tr > td:first-child {
    padding-left: 0.25rem;
}

.table-custom > tbody > tr:last-child > td {
    border-bottom-width: 0;
}

.cursor-pointer {
    cursor: pointer;
}

/* .blinking {
    animation: blink 0.9s linear infinite;
} */

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.blinking {
    animation: blink 1s ease-in-out infinite;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}
.select2-container .select2-selection--single {
    height: calc(1.9em + 0.5rem + 2px);
}

.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single {
    padding: 0.5rem 1rem;
    border: var(--phoenix-border-width) solid var(--phoenix-border-color);
    border-radius: var(--phoenix-border-radius);
}

/* .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    padding-left: 0.5rem;
}
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
    height: calc(1.5em + 0.5rem + 2px);
}
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
} */

.select2-container .select2-selection {
    height: calc(1.9em + 0.4rem + 0px);
    border-color: var(--phoenix-border-color);
}

.form-floating .select2-container .select2-selection {
    height: calc(1.9em + 0.5rem + 9px);
}

.form-floating .select2-container .select2-selection {
    padding-top: 10px;
}

.form-floating .select2-container .select2-selection .select2-selection__arrow {
    top: 10px;
    right: 10px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    top: 6px;
}

.select2-container .select2-selection__choice {
    text-transform: uppercase;
    padding: 2.5px 8px !important;
    font-size: .64rem !important;
    border: 0;
    background-color: var(--phoenix-choices-item-bg) !important;
    border-radius: 4px;
    margin-bottom: 0 !important;
    color: var(--phoenix-choices-item-color);
    font-weight: 700;
    line-height: 1;
}

.select2-container .select2-selection--multiple .select2-selection__choice {
    margin-top: 9px;
}

.select2-container .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 14px;
}

.select2-container .select2-selection--multiple .select2-selection__choice__remove {
    font-size: 1.4em;
}

.bullet-item {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .white-space-nowrap-sm {
        white-space: nowrap;
    }
}