table {
    page-break-inside: auto;
    border-collapse: collapse;
    width: 100%;
    
    font-size: 12.33px;

    margin-bottom: 15px;

    border-radius: 5px;
    outline: 1px solid #e7e7e7;
}

tr {
    background-color: #f7f7f7;
    
    padding: 0px 15px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header {
    height: 45px;

    font-weight: bold;
    
    border-bottom: 1px solid #e7e7e7;
    border-radius: 5px 5px 0px 0px;
}

.clickable-row {
    cursor: pointer;
}

.clickable-row:hover {
    background-color: #e7e7e7;
}

.table-row {
    min-height: 45px;

    border-bottom: 1px solid #e7e7e7;
}

td {
    text-align: left;
    
    display: flex;
    align-items: center;
}

.table-footer {
    height: 45px;
    
    border-radius: 0px 0px 5px 5px;
    
    font-weight: bold;

    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-info {
    margin-left: 7.5px;
    margin-right: 7.5px;
}

.pagination-buttons button {
    width: 30px;
    height: 30px;

    background-color: transparent;

    border: none;
    border-radius: 15px;

    margin: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-buttons button:hover {
    background-color: #e7e7e7;
}

.pagination-buttons button span {
    font-size: 25px;
}

.col {
    margin: 10px 15px;
    
    position: relative;
}

.col.last {
    display: flex; 
    justify-content: right;
}

.header {
    width: 100%;
    height: 45px;

    margin-bottom: 15px;

    display: flex;
    align-items: center;

    position: relative;
}

.header h3 {
    display: flex; 
    align-items: center;
}

.utilities {
    position: absolute;
    right: 0;

    display: flex;
    align-items: center;
}

.circle-button {
    width: 35px;
    height: 35px;

    color: #000;

    margin-left: 5px;

    border-radius: 50%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-button:hover {
    background-color: #e7e7e7;
}

#search {
    width: 250px;

    margin: 0;
    margin-right: 15px;
}

#search input {
    padding-left: 30px;
}

.utilities .search {
    position: absolute;
    left: 15px;

    font-size: 17.33px;
}

.utilities .close {
    position: absolute; 
    right: 15px; 
    
    font-size: 17.33px; 

    cursor: pointer;
}

.table-tag {
    color: #fff;

    font-size: 11.33px;

    border-radius: 5px;

    padding: 5px 10px;
}

.filter {
    width: 330px;
    height: 100%;

    background-color: #fff;

    position: fixed!important;
    right: 0;
    top: 0;

    padding: 15px;

    border-left: 1px solid #e7e7e7;

    z-index: 1;
    
    display: none;
}

.filter .header {
    width: 100%;
    height: 45px;

    display: flex;
    align-items: center;
}

.filter .circle-button {
    position: absolute;

    right: 0;
}

.list-circle-button {
    width: 35px;
    height: 35px;
    
    color: #000;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;

    cursor: pointer;
}

.list-circle-button:hover {
    background-color: #ccc;
}

.list-circle-button .icon {
    font-size: 20.33px;
}

.actions-div {
    width: 200px;
    
    background-color: #fff;
    
    outline: 1px solid #e7e7e7;
    border-radius: 5px;
    
    display: none;
    
    position: absolute;
    top: 0px;
    right: 30px;
    
    z-index: 98;
}

.actions-div .items-container {
    padding: 3px 0;
}

.actions-div .item {
    width: 100%;
    height: 45px;
    
    font-size: 14px;
    color: #000;

    display: flex;
    justify-content: left;
    align-items: center;
}

.actions-div .item:hover {
    background-color: #f7f7f7;
}

.actions-div .item .icon {
    font-size: 23px;
    
    margin: 0 10px 0 20px;
}

.actions-div .item .text {
    font-size: 14px;
    font-weight: 600;
}

.content-div {
    width: 100%;
}