.club {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.club .club__right {
    padding: 15px;
    background-color: #eeeeee;
    border-radius: 5px;
    width: calc(100% - 25%);
}

.club .club__left {
    background-color: #eeeeee;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 20px;
    border-radius: 5px;
    min-height: 100%;
    width: 25%;
}

.club .club__bb:hover {
    background: rgba(255, 255, 255, 0.86);
    color: #318cc6;
}

.club .club__bb {
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #475669;
    line-height: 140px;
    padding: 0 50px;
    font-size: 20px;
}

.club .club__ttl {
    font-size: 16px;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.club .club__bottom .bth__btn {
    margin-top: 15px;
}


.club .club__users .bth__ava-120:hover:before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 5px;
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
}

.club .club__users .bth__ava-120 {
    margin-right: 10px;
    position: relative;
}

.club .club__users {
    width: 100%;
    background: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    border: 10px solid #ffffff;
    border-radius: 5px;
}


@media screen and (max-width: 1023px) {
    .club .club__right, .club .club__left {
        width: 100%;
    }

    .club {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .club .club__users .bth__ava-120 {
        width: 80px;
        height: 80px;
    }

    .club .club__ttl {
        font-size: 14px;
    }

    .club .club__left {
        margin: 10px 0 0 0;
    }

    .club .club__bb {
        font-size: 16px;
        line-height: 50px;
    }

    .club .club__users {
        overflow: auto;
    }
}