.dropdown-toggle::after {
    margin-left: 0em;
}

.small {
    margin-top: -15px;
    z-index: 999
}

.select2-container--default .select2-selection--single {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.table-sm td, .table-sm th {
    padding: 0.1rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #007bff;
    border: 1px solid #007bff;
    border-radius: 4px;
    cursor: default;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
}


.spinner {
    border: 5px solid #f2f2f2;
    border-bottom: 5px solid #000000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spinner 2s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
