.transactions {
    padding: 44px 15px 48px
}

.transactions__filters {
    align-items: center;
    display: flex;
    justify-content: flex-end
}

.transactions__filters-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 3px;
    color: #262626;
    display: block;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.8571428571;
    padding: 0 12px;
    transition-duration: .15s;
    transition-property: color, border-color, background;
    transition-timing-function: ease-in-out;
    white-space: nowrap
}

.transactions__filters-btn:hover,
.transactions__filters-btn_active {
    color: #01c102
}

.transactions__filters-btn_active {
    background: #eefdee;
    border-color: #8ad48a
}

.transactions__table {
    border-collapse: collapse;
    border-top: 1px solid #f2f5fc;
    color: #262626;
    font-size: .75rem;
    line-height: 1.2;
    margin-top: 40px;
    width: 100%
}

.transactions__table tr:nth-child(2n) {
    background: #f2f5fc
}

.transactions__table td,
.transactions__table th {
    padding: 8px
}

.transactions__table th {
    font-weight: 600;
    height: 42px
}

.transactions__table td {
    height: 40px
}

.transactions__earning {
    color: #00b401
}

@media only screen and (min-width:36em) {
    .transactions__table {
        font-size: .875rem;
        line-height: 1.2
    }

    .transactions__table td,
    .transactions__table th {
        padding: 8px 22px
    }
}

@media only screen and (min-width:48em) {
    .transactions {
        padding: 44px 40px 48px
    }
}