#queriesContainer{
    background-color: #F0F3FB;
}

table.last-queries-table thead th{
    background-color: white;
    min-height: 60px;
    border: none;
    vertical-align: middle;
    padding: 20px 1.6rem;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.01em;
    text-align: left;
}

table.last-queries-table thead th:first-child, table.last-queries-table tbody td:first-child{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

table.last-queries-table thead th:last-child, table.last-queries-table tbody td:last-child{
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
table.last-queries-table tbody tr{
    background-color: white;
    border-radius: 8px;
}

table.last-queries-table tbody tr:nth-child(2n) {
    background-color: transparent;
    border-radius: 8px;
}

table.last-queries-table tbody td {
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    border:none;
    padding: 1rem 1.6rem;
}

table.last-queries-table tbody td label{
    display: none;
    opacity: 0.35;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1rem;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    table.last-queries-table thead{
        display: none;
    }

    table.last-queries-table tbody tr{
        display: flex;
        background-color: white!important;
        margin-bottom: 2rem;
        border-radius: 8px;
        flex-wrap: wrap;
    }

    table.last-queries-table tbody tr td{
        /*flex: 1;*/
    }

    table.last-queries-table tbody td label{
        display: block;
        width:100%;
    }

    td.flex-50{
        flex:50%;
    }

    td.flex-100{
        flex: 100%;
        border-bottom: 1px solid rgba(43, 43, 70, 0.2)!important;
    }
    td.flex-100:last-child{
        flex: 100%;
        border-top: 1px solid rgba(43, 43, 70, 0.2)!important;
        border-bottom: none!important;
        border-top-right-radius: 0!important;
        border-bottom-right-radius: 0!important;
    }

}

