.botoes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0rem 5rem;
}

.filtroDesck {
    display: flex;
    width: 150px;
    border-bottom: 1px solid var(--cor-border);
    margin-bottom: 1rem;
}

.filtroDesck p {
    margin: .5rem;
}

.filtro {
    display: none;
    width: 150px;
    border: none;
    background-color: transparent;
    text-align: left;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
    cursor: pointer;
}

.direita {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.visualizar,
.btn_direita {
    display: flex;
    align-items: center;
    border: none;
    background-color: transparent;
    margin-bottom: .5rem;
    gap: .25rem;
    cursor: pointer;
}

.impressora {
    width: 15px;
    height: 15px;
}

@media screen and (max-width: 990px) {
    .botoes {
        width: 100%;
        padding: 0rem 2rem;
    }
    
    .filtroDesck{
        display: none;
    }

    .filtro{
        display: block;
    }

    .btn_direita {
        display: none;
    }
}

@media screen and (max-width: 350px) {
    .botoes {
        padding: 0rem 1rem;
    }
}

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
    }

    body {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    header, footer {
        display: none;
    }

    .title   h1 {
        font-size: 18px;
        margin-left: -150px;
    }

    .botoes {
        display: none;
    }

    .container_filtros {
        visibility: collapse;
    }

    .list_of_works {
        margin-left: -200px;
        width: 100vw;
        flex-wrap: nowrap;
    }
    
    .card {
        width: 50px;
        height: 16px;
        border: none;
        font-size: 12px;
    }

    .page {
        visibility: collapse;
    }
}