.catalog-section__wrapper {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -10px;
    flex-direction: row;
}
.catalog-section__item {
    border-radius: 5px;
    border: 0;
    display: flex;
    position: relative;
    height: 100%;
    box-shadow: 0 0 0 1px transparent;
    transition: .3s;
    flex-direction: column;
    justify-content: flex-end;
}
.catalog-section__item .image {
    min-width: 150px;
    display: block;
    margin-right: 10px;
    max-width: 150px;
    padding: 0; 
}
.catalog-section__item img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
    width: 100%;
}
.catalog-section__item .name {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 2px;
    padding: 0 15px 0 0;
    font-weight: bold;
}
.catalog-section__item .brand {
    font-size: 12px;
    line-height: 14px;
    color: #6e757e;
    margin-bottom: 6px;
    padding: 0 15px 0 0;
}
.catalog-section__item .content {
    padding: 0;
    width: 100%;
}
.catalog-section__item .price {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -.5px;
    margin-bottom: 12px;
    padding: 0 15px 0 0;
}
.catalog-configuration__accessories-btn button {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    background: #0e8db5;
    color: #fff;
}
@media screen and (min-width: 769px) {
    .catalog-section__item:hover {
         box-shadow: none; 
    }
}