/* layout */
.flex-column {
    display: flex;
    height: 100%;
    overflow: hidden;
}

/* form */
.form-control::placeholder {
    color: #cccccc;
}
.select2-container--default .select2-selection--single.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url('data:image/svg+xml, %3csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" stroke="%23dc3545" viewBox="0 0 12 12"%3e %3ccircle cx="6" cy="6" r="4.5" /%3e %3cpath stroke-linejoin="round" d="M5.8 3.6h.4L6 6.5z" /%3e %3ccircle cx="6" cy="8.2" r=".6" fill="%23dc3545" stroke="none" /%3e %3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.select2-container--default .select2-selection--single.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.select-multiple2 .ms-choice {
    height: 34px;
    line-height: 34px;
    border: 1px solid #ced4da;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.select-multiple2 button span {
    font-size: 0.875rem;
    padding-left: 0.9rem;
    padding-right: 0.5rem;
}
.select-multiple2 .input-group-text {
    font-size: 0.875rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
    padding-left: 1.75rem;
}

/* badge */
.badge-status {
    font-weight: normal;
    background-color: #a9a9a9;
}

/* text */
.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

/* overlay */
#overlay {
    position: fixed;
    top: 0;
    z-index: 1999;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.2);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}