/**
  remove the black bottom border of the bootstrap table
 */
.table > :not(:first-child) {
    border-top: 0px !important;
}
.fixed-table-loading .loading-wrap .loading-text{
    font-size: 16px !important;
}
.btn-xs, .btn-group-xs > .btn {
    padding: 0.125rem 0.25rem;
    font-size: 0.5rem;
    border-radius: 0.2rem;
}

.btn-xs + .dropdown-toggle-split, .btn-group-xs > .btn + .dropdown-toggle-split {
    padding-right: 0.275rem;
    padding-left: 0.275rem;
}

/**
  remove SweetAlert2 auto focus
 */
.swal2-popup .swal2-styled:focus {
    box-shadow: none !important;
}

/** form style */
.form-body {
    padding: 25px 50px;
}
.form-item-row{
    display: flex;
}
.form-item-left{
    line-height: 36px;
    margin-right: 10px;
    text-align: left;
    width: 80px;
}
.form-item-left span{
    color: red;
}
.form-item-right{
    flex:1;
}
.form-item-tips{
    font-size: 12px;
    color: grey;
}

.container-height{
    min-height: calc(100vh - 240px);
}