/**
 * Override for Select 2 multiple select box
 * adds arrow down at the right side of select box
 */
.select2-selection--multiple:before {
    content: '';
    position: absolute;
    right: 7px;
    top: 14px;
    border-top: 5px solid #888;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

/************************************************
 * Add and rotate arrow/carret on collapsed elements
 */
.card-header .fa {
    transition: .3s transform ease-in-out;
}
.card-header .collapsed .fa {
    transform: rotate(180deg);
}

/************************************************/

input[type=text]:disabled {
    background: #eee;
    color: #888;
}

/************************************************
 * custom file input
 */
.custom-file-input {
    position: absolute;
}
 /*
  * override table headings and rows
  */
.table th, .table td {
    padding: 0.4rem;
}
/*
 * override ElPage form wizard buttons alignment
 */
.wizard > .actions {
    text-align: left !important;
}
/*
 * override swal modal - center text
 */
.swal-modal .swal-text {
    text-align: center;
}
