/* ================= GRID ================== */

.tmusers-grid {
    display: grid;
}

.tmusers-grid-item {
    padding: 0;
}

/* ================= NOTICE ================== */

.tmusers-notice {
    background-color: #FF9800;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    border-left: 5px solid rgba(0, 0, 0, 0.1);
}

/* ================= FILTERS ================== */

.tmusers-filters {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: center;
    flex-direction:row;
}

.tmusers-filters.reverse {
    flex-direction: row-reverse;
}

.tmusers-search {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
}

.tmu-form-field-delete {
    line-height: 1;
    padding: 0 5px;
    color: #F44336;
    cursor: pointer;
}

.tmu-form-field,
.tmu-btn {
    margin-bottom: 5px;
    height: 40px;
    padding: 0 5px;
    line-height: 40px;
    border-radius: 0 !important;
}

.tmu-form-field {
    width:100%;
}

.tmu-btn {
    padding: 0 15px;
    margin-left: -1px;
    position: relative;
    z-index: 2;
    border:none;
    font-size:16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

body.rtl .tmu-btn {
    margin-right: -1px;
    margin-left: 0;
}

/* ================= PAGINATION ================== */

ul.tmusers-pagination {
    display: flex;
    list-style: none;
    margin: 35px 0 0 0;
    padding: 0;
}

li.tmusers-page-item {
    padding: 0;
    margin: 0 0 0 5px;
    border: 1px solid #ddd;
    min-width: 36px;
    line-height: 36px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

li.tmusers-page-item.active,
li.tmusers-page-item:hover {
    background-color: #000;
    border-color: #000;
}

li.tmusers-page-item a {
    display: block;
    color: #000;
    transition: all 0.2s ease-in-out;
}

li.tmusers-page-item.active,
li.tmusers-page-item:hover,
li.tmusers-page-item.active a,
li.tmusers-page-item:hover a {
    color: #fff;
}

/* ================= MEDIA ================== */

@media only screen and (max-width: 576px) {
    .tmusers-search,.tmusers-orderby {
        width:100%;
    }
}