.company-list-item {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}
.company-list-item .item-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.company-list-item .item-person {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.company-list-item .item-image {
    margin-right:10px;
    border: 2px solid transparent;
    width:60px;
    height:60px;
}
.company-list-item .item-image img {
    width:60px;
    height:60px;
    max-width:60px;
    border-radius:5px;
}
.company-list-item .item-image .item-image-img {
    background-size: cover;
    background-position: center;
    width:60px;
    height:60px;
    max-width:60px;
    border-radius:5px;
}
.company-list-item .item-company {
    color:#333;
    font-weight:600;
    word-break: break-all;
}
.company-list-item .exhibitor .item-company {
    text-align: center;
}
.company-list-item .item-post {
    color:#bababa;
    font-size:13px;
}
.company-list-item .item-btn {
    margin-top: auto;
    background-color: #5db5da !important;
    color: #fff !important;
}
.company-list-item .item-btn:hover {
    background-color: #f39324 !important;
}

/* скрываем баннер у компании Hosted Buyers */
#company_view>.info-alert {
    display: none;
}
.is_meeting_time {
    padding: 4px 14px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
}
.is_meeting_time.confirmed{
    background-color: #e1f5e0 !important;
    color: #47a74d !important;
}
.is_meeting_time.new {
    background-color: #fcf3d4 !important;
    color: #c9a106 !important;
}
.is_meeting_time.closed {
    background-color: #ae0000!important;
    color: #fff !important;
}
@media screen and (max-width: 1400px){
    .company-list-item {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 992px){
    .company-list-item {
        grid-template-columns: 1fr 1fr;
    }
    .company-list-item .item-image {
        width:45px;
        height:45px;
    }
    .company-list-item .item-image img {
        width:45px;
        height:45px;
        max-width:45px;
    }
}