.user-block { position: absolute; right: 0; }

.fa-btn {
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    margin: 0 0.2rem;
    border: none;
    border-radius: 0.375rem;
    color: #fff;
}
.fa-btn.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.auth {
    width: 450px;
    margin: 75px auto 0;
    padding: 30px;
    border-radius: 5px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    text-align: center;
    background-color: var(--bs-tertiary-bg);

    p {
        display: block;
        text-align: center;
        margin: 0 auto;
    }
    h1 {
        margin-bottom: 30px;
        color: #a7a7a7;
    }
    input[type=submit] {
        padding: 10px 30px;
        margin-top: 15px;
        border-radius: 5px;
        border: none;
        background-color: var(--bs-primary);
        color: #ffffff;
        cursor: pointer;
        transition: 0.25s;
    }
    input[type=submit]:hover { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); transition: 0.25s; }
}

.sorting {
    i { opacity: 0.5; }
    i.active { opacity: 1; }
    .fa-sort-up { margin-top: 3px; margin-bottom: -6px; }
    .fa-sort-down { margin-top: -6px; }
}

.hide { display: none !important; }

.form-control, .form-select {
    height: inherit !important;
}
.form-control::placeholder {
    opacity: 0.7;
}
.form-control:disabled {
    color: #21252975;
}

.select2-container {
    .select2-selection {
        border-color: var(--bs-border-color);
        border-radius: var(--bs-border-radius);
    }
    .select2-selection__choice {
        margin-bottom: 0 !important;
        padding: .1em .4em !important;
    }
    .select2-selection__choice__remove {
        width: 0.5rem !important;
        height: 0.5rem !important;
    }
    .select2-container--disabled .select2-selection {
        background-color: var(--bs-secondary-bg);
    }
    .select2-container--disabled .select2-selection .select2-selection__rendered {
        color: #21252975;
    }
}
.is-invalid + .select2-container .select2-selection,
.is-invalid + .select2-container--focus .select2-selection,
.is-invalid + .select2-container--open .select2-selection {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%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(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.required-label {
    color: #dc3545;
    font-size: 1.2em;
    line-height: 0;
    margin-left: 5px;
}