
.content__info__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 4rem;
}

.table_search_options {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    gap: 1rem;
}   

.dropdown__title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown__title > span {
    font-size: 0.8rem;
}

/*-- dropdowns modals*/
.serach_btn {
    background-color: var(--primary-blue-color);
}

.column_row {
    gap: 10px;
    justify-content: space-between;
}

.column_row > input {
    flex-grow: 1;
}

.dropdown-content {
    max-width: unset;
    box-shadow: 0px 0px 2px gray;
    border-radius: 5px;
    margin-top: 10px;
}

.dropdown_server {
    width: 500px;
}

.dropdown-date {
    width: 500px
}

.dropdown-date .dropdown-item:nth-child(1) {
    margin: 0;
}

.dropdown-content div.dropdown-item:last-child {
    text-align: end;
}
/*--*/


/* --quantity and searchbox input*/
.table_searchbox_and_quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    flex-flow: wrap;
}

select {
    padding: 0.2rem 0.2rem;
    font-size: 0.75rem;
}
/**/

/*--table*/
.table_container {
    overflow: auto;
    margin-bottom: 0.8rem;
}

thead > tr:first-child > .is-sort{
    text-decoration: underline;
}

/* thead > tr:first-child > th > i {
    position: relative;
    height: 7px;
}

thead > tr:first-child > th > i:before {
    position: absolute;
    top: -7px;
    transform: translateY(-50%);
    height: 7px;
} */

thead > tr:first-child > .is-sort:hover {
    cursor: pointer;
}

table tr {
    font-size: 12px;
}

.table_pagination {
    display: flex;
    align-items: center;
    flex-flow: wrap;

    position: sticky;
    bottom: 0;
    padding: 10px 0;
}

.table_show {
    flex: 1;
    flex-basis: fit-content;
}

.pagination-link {
    margin: unset;
}

.table td,
.table th {
    padding: .75em;
}

.table > tbody th > a{
    color: #134f80;
}
/*--*/


.pagination-link:active {
    color: #134f80  ;
}


/*=================== Media Querys ===================*/
@media screen and (max-width: 1105px){
    .table_search_options__item:nth-of-type(5) .dropdown-menu{
        right: unset;
    }
}

@media screen and (max-width: 840px){
    .table_search_options__item:nth-of-type(5) .dropdown-menu{
        right: 0;
    }

    .table_search_options__item:nth-of-type(4) .dropdown-menu{
        right: unset;
    }
}


@media screen and (max-width: 800px){
    .table_searchbox_and_quantity {
        flex-direction: column;
        justify-content: center;
    }

    .table_searchbox_and_quantity > div:first-child {
        flex-flow: column;
        gap: 1rem;
        width: 100%;
    }

    .table_searchbox_and_quantity > div > i.navbar_path-divider {
        display: none!important;
    }

    .table_search_options__item {
        width: 100%;
        text-align: center;
    }

    .table_search_options__item .dropdown.is-right .dropdown-menu{
        right: unset;
    }

    .table_search_options__item .dropdown-menu{
        width: 300px;
        right: unset;
        transform: translateX(-20%);
    }

    .table_pagination {
        justify-content: center;
    }

    .table_show {
        flex-basis: 100%;
        text-align: center;
        margin: 0.8rem 0;
    }
}

.priority {
    display: block; font-size: 0.9em; font-weight: normal;
}
