.wallet {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, .06)
}

.wallet__tabs {
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    padding: 15px 5px 20px;
    row-gap: 10px
}

.wallet__tab {
    align-items: center;
    border: 1px solid #e6e6e6;
    color: #303030;
    display: flex;
    font-size: .6875rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .15s ease-in-out
}

.wallet__tab:hover,
.wallet__tab_active {
    color: #00b401
}

.wallet__tab_active {
    position: relative
}

.wallet__tab_active:before {
    background: #01c102;
    bottom: -1px;
    content: "";
    display: block;
    left: -1px;
    position: absolute;
    top: -1px;
    width: 3px
}

@media only screen and (min-width:36em) {
    .wallet__tabs {
        align-items: center;
        -moz-column-gap: 15px;
        column-gap: 15px;
        flex-direction: row;
        padding: 0
    }

    .wallet__tab {
        border: none;
        min-height: 49px
    }

    .wallet__tab_active:before {
        bottom: -2px;
        height: 3px;
        left: 0;
        top: auto;
        width: 100%
    }
}

@media only screen and (min-width:75em) {
    .wallet__tab {
        font-size: .8125rem;
        padding: 0 30px
    }
}