.offerLists {
    display: none;
}

@media (min-width: 1250px) {
    
    .offerLists {
        display: block;
        width: 830px;
        padding: 10px;
        background-color: rgb(50, 50, 50);
    }
    
    #offerListSellers {
        margin-top: 8px;
    }
    
    #offerListBuyers {
        margin-top: 16px;
        margin-bottom: 100px;
    }
    
    .offerListTitle {
        font-size: 16px;
        margin-bottom: 10px;
        text-align: left;
        text-transform: uppercase;
        color: white;
    }
    
    .offerTableScrollContainer {
        display: block;
        overflow-y: scroll;
        max-height: 300px;
        margin: 0;
        padding: 0;
    }
    
    .loadMoreContainer {
        justify-content: flex-end;
        display: flex;
    }
    
    .loadMoreInput {
        margin-right: 10px;
        margin-top: 10px;
        color: black;
    }
    
    .offerLists table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
    }
    
    .offerLists tr {
    
    }
    
    .offerLists tbody tr:nth-child(odd) {
        background-color: #ffffff0f;
    }
    
    .offerLists td {
        font-size: 13px;
        padding: 5px;
        text-align: left;
        border: 1px solid rgb(180, 180, 180);
    }
    
    .offerLists th {
        font-size: 13px;
        padding: 5px;
        text-align: left;
        color: white;
        border: 1px solid rgb(180, 180, 180);
    }
    
    .offerLists a {
        color: #84c6f2;
    }
    
    .offerLists a:hover {
        color: #b1d7f0;
    }
    
    .offerLists .loadMoreButtonContainer {
        margin-top: 10px;
        text-align: right;
    }
    
    #pfToggle{
        margin-top: 10px;
        text-align: center;
        margin-right: 20px;
        text-transform: uppercase;
        font-size: 10px;
        line-height: 12px;
        border: white 1px solid;
        padding: 4px 10px;
        background-color: rgba(255,255,255,.1);
        cursor: pointer;
    }
    
    .pfToggle:hover{
        background-color: rgba(255,255,255,.2);
    }
   
}